This month, Pokemon GO trainers will have a new schedule of PokeStop Showcases to deal with. The recently introduced mechanic is based on that of the Pokemon Contest from the mainline series, where the participating pocket monsters are judged on a variety of factors. In Niantic's AR title, one of these criteria is the critter's size.
So, which pocket monsters will be featured in PokeStop Showcases in Pokemon GO in October 2023? This article explains more.
Pokemon GO PokeStop Showcases October 2023 complete guide
Niantic has already revealed the Pokemon GO October 2023 content roadmap. It shared the schedule for PokeStop Showcases for this month. The eligible pocket monsters and their schedule are as follows:
Growlithe and Hisuian Growlithe
- September 30 to October 2 (Starts at 10 am local time and ends at 8 pm local time).
Pikachu
- October 5 to October 9 (Starts at 10 am local time and ends at 8 pm local time).
Smoliv, Pumpkaboo, or Gourgeist
- October 12 to October 13 (Starts at 10 am local time and ends at 8 pm local time).
Timburr and Conkeldurr
- October 15 (Starts at 10 am local time and ends at 8 pm local time).
Smoliv
- October 16 to October 17 (Starts at 10 am local time and ends at 8 pm local time).
Shuppet and Banette
- October 20 to October 22 (Starts at 10 am local time and ends at 8 pm local time).
???
- October 23 to October 25 (Starts at 10 am local time and ends at 8 pm local time).
Phantump
- October 26 to October 28 (Starts at 10 am local time and ends at 8 pm local time).
Drifloon
- October 29 to October 31 (Starts at 10 am local time and ends at 8 pm local time).
(??? refers to unannounced pocket monsters)
During these periods, trainers can find specific PokeStops hosting showcases for these pocket monsters. They can then choose to participate in the same. Regarding the judging criteria, the game's wiki states:
"Each Showcase judges a specific Pokémon species under a specific criteria. The Pokémon is given a certain amount of points based on how well it meets the criteria. A leaderboard can be viewed to see how each participant's Pokémon placed."
Previously featured pocket monsters in PokeStop Showcases ever since its launch are as follows:
- Fomantis
- Squirtle
- Snorlax
- Amaura
- Tyrunt
- Politoed
- Poliwrath
- Poliwag
- Petilil
- Cacnea
- Oddish
- Seedot
- Greninja
- Froakie
- Dragalge
- Skrelp
- Goomy
- Pikachu
- Rayquaza
- Charmander
- Charizard
- Lechonk
- Nymble
- Pawmi
- Oddish
- Spoink
- Grubbin
- Vikabolt
It is likely that the first unknown PokeStop Showcase will have something to do with the upcoming Detective Pikachu Returns event in Pokemon GO. We will update this article as soon as more information is available.
More from Sportskeeda
" 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": 1691439, "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(1691439); 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(1691439) >= 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(1691439) .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 }); })();