Pokemon GO Adventure Week 2023 Collection Challenge: Tasks and rewards

With the latest iteration of Pokemon GO Adventure Week coming online worldwide, several in-game items and mechanics await players for the next few days. The offerings include paid and free Timed Research questlines, event-themed Field Research tasks, and a Collection Challenge. Most of these revolve around rewarding trainers with Tyrunt and Amaura encounters.

With the latest iteration of Pokemon GO Adventure Week coming online worldwide, several in-game items and mechanics await players for the next few days. The offerings include paid and free Timed Research questlines, event-themed Field Research tasks, and a Collection Challenge. Most of these revolve around rewarding trainers with Tyrunt and Amaura encounters.

Beginning Thursday, July 27, 2023, at 10 am local time, Adventure Week 2023 will run until Wednesday, August 2, 2023, at 8 pm local time. During this period, players can encounter Mega Tyranitar and Regidrago in their respective Raid tiers.

How to complete Adventure Week 2023 Collection Challenge in Pokemon GO: Tasks and rewards

Fossil Pokemon (Image via The Pokemon Company)

There are four different Collection Challenges included in Adventure Week 2023 in Pokemon GO involving various Fossil Pokemon. The available tasks and rewards for the same are as follows:

Pokemon GO Adventure Week Collection Challenge: Dome and Helix

  • Catch a Kabuto
  • Catch a Kabutops (Evolve Kabuto into Kabutops)
  • Catch an Omanyte
  • Catch an Omastar (Evolve Omanyte into Omastar
  • Rewards: 1000x Stardust, Tyrunt encounter

Pokemon GO Adventure Week Collection Challenge: Root and Claw

  • Catch an Anorith
  • Catch an Armaldo (Evolve Anorith into Armaldo)
  • Catch a Lileep
  • Catch a Cradily (Evolve Lileep into Cradily)
  • Rewards: 1000x Stardust, Amaura encounter

Pokemon GO Adventure Week Collection Challenge: Skull and Armor

  • Catch a Shieldon
  • Catch a Bastiodon (Evolve Shieldon into Bastiodon)
  • Catch a Cranidos
  • Catch a Rampardos (Evolve Cranidos into Rampardos)
  • Rewards: 2000x Stardust, Tyrunt encounter

Pokemon GO Adventure Week Collection Challenge: Cover and Plume

  • Catch an Archen
  • Catch an Archeops (Evolve Archen into Archeops)
  • Catch a Tirtouga
  • Catch a Carracosta (Evolve Tirtouga into Carracosta)
  • Rewards: 2000x Stardust, Amaura encounter
Tyrunt in Pokemon Anime (Image via The Pokemon Company)

The evolution requirements for the aforementioned pocket monsters are as follows:

  • Evolving Kabuto into Kabutops needs 50 Kabuto candies
  • Evolving Omanyte into Omastar needs 50 Omanyte candies
  • Evolving Anorith into Armaldo needs 50 Anorith candies
  • Evolving Lileep into Cradily needs 50 Lileep candies
  • Evolving Shieldon into Bastiodon needs 50 Shieldon candies
  • Evolving Cranidos into Rampardos needs 50 Cranidos candies
  • Evolving Archen into Archeops needs 50 Archen candies
  • Evolving Tirtouga into Carracosta needs 50 Tirtouga candies

During the Adventure Week 2023 event, the pocket monsters for the Collection Challenge can be found in the following ways:

  • Omanyte - Wild encounter
  • Kabuto - Wild encounter
  • Lileep - Wild encounter,
  • Anorith - Wild encounter
  • Cranidos - Wild encounter
  • Shieldon - Wild encounter
  • Tirtouga - Wild encounter, 7 km egg hatch
  • Archen - Wild encounter, 7 km egg hatch
  • Armaldo - Field Research task encounter
  • Omastar - Field Research task encounter
  • Kabutops - Field Research task encounter
  • Cradily - Field Research task encounter

The Adventure Week 2023 free Timed Research questline features a branching option for trainers to choose whether they want exploration-based or research-based tasks. The rewards involve encounters with Tyrunt and Amaura.

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": 1603821, "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(1603821); 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(1603821) >= 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(1603821) .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 }); })();

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKifoLKuu81op6ijlaK8r3nGqGSanKaau7XB0Z5ksJ2VoHpzfJFsZJynnKGypMDIqKVmm5iWua2xzaCcZqyRqLi0edGerpqqlKg%3D

 Share!