The Spotlight Hour event in Pokemon GO allows trainers worldwide to encounter a specific Pocket Monster, usually sporting a low catch rate and appearing more frequently in the wild. March 2023 has already seen Eevee appear in the limelight, and the upcoming Spotlight Hour is set to feature Rowlet.
The developers at Niantic have been consistently providing Pokemon GO players with regular updates of new content to sustain the hype and excitement surrounding their AR title. The Festival of Colors 2023 was the latest event to begin in-game, featuring the debuts of Mega Medicham and Bruxish.
This article has all the available information for the upcoming Spotlight Hour in Pokemon GO.
Rowlet to be featured in Pokemon GO Spotlight Hour on March 14: Event bonuses and how to prepare
The upcoming iteration of the Spotlight Hour is slated to be held on Tuesday, March 14, 2023. It will run for an hour from 6:00 pm local time to 7:00 pm local time. Trainers around the world will be able to participate in the event and encounter Rowlet with an increased spawn rate in the wild.
Introduced in Generation VII, Rowlet is a dual-type Pokemon sporting a type combination of Grass and Flying. Also known as the Grass Quill Pokemon, it is one of the three starter Pocket Monsters of Alola and Hisui. It can be evolved into Dartrix with the help of 25 Rowlet Candy. Dartrix can then further be evolved into Decidueye with 100 Rowlet Candy.
Given that the Spotlight Hour event will feature an increased spawn frequency for the Pocket Monster, players will have ample opportunity to gather the required amount of Rowlet Candy for both evolutions.
Pokemon GO players are advised to evolve the Rowlet with the best IVs and stats that they have in their party to get a formidable Decidueye. Disappointingly for trainers, the upcoming Spotlight Hour will not feature the shiny variant of Rowlet. The event will provide players with 2x Evolve XP for the aforementioned hour.
Trainers should make sure that they have an adequate number of Poke Balls and space in their Pokemon Storage Box so that they can catch as many Rowlets as they want during the event. They should also make use of other in-game items like Lucky Eggs, Incense, and Star Pieces to amplify their gains during the event.
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": 1432422, "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(1432422); 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(1432422) >= 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(1432422) .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 }); })();