Pokemon Scarlet and Violet Indigo Disk release time is almost upon us, with the countdown timer steadily ticking down. It is the second and final part of The Hidden Treasure of Area Zero DLC and will bring players to the Blueberry Academy. The developers have already revealed the broad strokes of the upcoming content. Fans have been eagerly anticipating it for some time now, and this article provides the expected release time for it.
Titled The Teal Part, the first part of The Hidden Treasure of Area Zero was released on September 13, 2023. Trainers visited the village of Kitakami during high festivities and got involved in the narratives and lore of the region. With the second part, the dev team has planned for something grander and bolder - with returning Legendary Pokemon, an all-new Synchro Machine, and more.
Is Indigo Disk DLC out? Pokemon Scarlet and Violet DLC release time explored
While there's no official confirmation yet, it will probably follow the same release time as the first part, The Teal Mask. Based on the same, Pokemon Scarlet and Violet Indigo Disk is expected to come out on December 14, 2023, at 1 am UTC.
Readers can keep a tab on the same from the above countdown timer. We are also providing the predicted schedule for Indigo Disk release time to have an easier time navigating:
👉 For more insights, check out this resource.
| Time Zone | Release Date & Time |
| Pacific Time | 5 pm on December 13 |
| Central Time | 7 pm on December 13 |
| Eastern Time | 8 pm on December 13 |
| UK Time | 1 am on December 14 |
| Central Europe Time | 2 am on December 14 |
| Indian Time | |
| Japan Time | 10 am on December 14 |
| Australian Time | 12 pm on December 14 |
| New Zealand TIme | 2 pm on December 14 |
The Indigo Disk release time for major cities is as follows:
👉 Discover more in this in-depth guide.
| City | Release Date & Time |
| Los Angeles, United States | 5 pm on December 13 |
| New York, United States | 8 pm on December 13 |
| London, United Kingdom | 1 am on December 14 |
| Paris, France | 2 am on December 14 |
| Berlin, Germany | 2 am on December 14 |
| New Delhi, India | |
| Tokyo, Japan | 10 am on December 14 |
| Sydney, Australia | 12 pm on December 14 |
| Auckland, New Zealand | 2 pm on December 14 |
The Indigo Disk DLC is available as part of The Hidden Treasure of Area Zero, costing $34.99 on the official Nintendo online store. This also includes The Teal Mask DLC and is for trainers who already own the base game. The eShop has bundles specific to either Scarlet or Violet. The base game + DLC bundle will cost players $94.99.
Pokemon Scarlet and Violet trainers will get to scour the undersea Terarium in the Blueberry Academy. The unique structure boasts artificially curated environments hosting several pocket monsters from previous generations.
The Blueberry Academy's Elite Four, the 19th Tera Type, and the new Legendary Pokemon Terapago await trainers in the upcoming DLC.
Meanwhile, check out our other Pokemon Scarlet and Violet Indigo Disk coverage:
Indigo Disk Pokedex || 10 biggest Indigo Disk leaks || Indigo Disk All Legendary Pokemon || Best starters for Scarlet and Violet
" modalPopup.closeOnEsc = false; modalPopup.setHeader("Why did you not like this content?"); modalPopup.setContentText(modalText); modalPopup.addCancelOkButton("Submit", resetRatingAndFeedbackForm, sendRating); modalPopup.removeCloseModalIcon(); modalPopup.disableDismissPopup(); modalPopup.open(); } else { sendRating(index); } } function sendRating() { var requestPayload = { "post_id": 1768069, "rating_value": ratingValue } if (ratingValue > 3) { requestPayload.rating_feedback_type = null; requestPayload.rating_feedback = null; } else { if (!$('input[name="drone"]:checked') || !$('input[name="drone"]:checked').value) { showErrorMessage('option'); return; } if (!$(".post-rating-feedback-note textarea") || !$(".post-rating-feedback-note textarea").value) { showErrorMessage('note'); return; } var selectedOption = $('input[name="drone"]:checked').value; var feedbackNote = $(".post-rating-feedback-note textarea").value; requestPayload.rating_feedback_type = selectedOption; requestPayload.rating_feedback = feedbackNote; } pureJSAjaxPost(addratingAPI, requestPayload, onsaveRatingSuccess, onsaveRatingFail, function() {}, true); } function resetRatingAndFeedbackForm() { var activeStars = Array.from($all('.rating span.rating-star.active')); for (var i=0; i < activeStars.length; i++) { activeStars[i].classList.remove("active"); } if ($('input[name="drone"]:checked')) { $('input[name="drone"]:checked').checked = false; } var userNote = document.querySelector(".post-rating-feedback-note textarea"); userNote.value = ''; modalPopup.close(); } function onsaveRatingSuccess() { modalPopup.close(); savePostIdInUserRatedPostsCookie(); $("#post-rating-layout").classList.add("hidden"); $("#post-rating-message").classList.remove("hidden"); window.setInterval(function showMessage() { $("#post-rating-widget").classList.add("hidden"); }, 3000); } function onsaveRatingFail() { console.error('Saving post rating failed!'); modalPopup.close(); } function savePostIdInUserRatedPostsCookie() { userRatedPostIds.push(1768069); var expiryTime = new Date(); expiryTime.setMonth(expiryTime.getMonth() + 12); // Expiry after 1 year setCookie("user_rated_post_ids", JSON.stringify(userRatedPostIds), expiryTime); } function isPostRatedByUser() { var userRatedPostIds = getCookie('user_rated_post_ids'); if (userRatedPostIds) { try { userRatedPostIds = JSON.parse(userRatedPostIds); } catch (err) { console.error(err); return false; } } else { return false; } if(userRatedPostIds.indexOf(1768069) >= 0) { return true; } else { return false; } } function getRatingCountByPostId(postId) { return new Promise(function(resolve, reject) { pureJSAjaxGet( getRatingCountBaseURL + postId + '/rating/count', function(data) { try { data = JSON.parse(data); if (data.meta_value) { resolve(data.meta_value); } reject("Failed to fetch rating count for the post:" + postId); } catch (err) { reject("Failed to fetch rating count for the post:" + postId); } }, function(err) { reject("Failed to fetch rating count for the post:" + postId); }, true); }); } function showErrorMessage(messageType) { var messageContainerId = '#' + messageType + '-error'; $(messageContainerId).classList.remove('hidden'); window.setInterval(function () { $(messageContainerId).classList.add("hidden"); }, 5000); } (function() { var callFired = false; function lazyLoadPostRating() { if (callFired) return; callFired = true; if (!isPostRatedByUser()) { getRatingCountByPostId(1768069) .then(function(ratingCount) { if (ratingCount < 10) { $("#post-rating-widget").classList.remove("hidden"); } }) .catch(function(err){ console.error(err); }); } } document.addEventListener("scroll", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("mousemove", lazyLoadPostRating, { passive: true, once: true }); document.addEventListener("touchmove", lazyLoadPostRating, { passive: true, once: true }); })();