published on in News Today

Pokemon GO - Best Catch Cup: Great League Edition team choices

Pokemon GO’s Catch Cup will go live on Saturday, November 18, 2023, at 1 pm Pacific Time (PT). You can participate in this cup format of the Great League till Saturday, November 25, 2023, at 2 pm PT. Being a Great League Cup, you can only play with Pocket Monsters with a Combat Power (CP) of 1,500 or less. Furthermore, you can only play with monsters you caught in the current season.

In this article, we will walk you through the best picks for each role – Lead, Switch (Safe Swap), and Closer – that you can use to build your team for the Catch Cup.

Best Leads for Pokemon GO’s Catch Cup: Great League Edition

Lanturn in the anime (Image via The Pokemon Company)

1) Lanturn

Base stats

  • Attack: 104.8
  • Defense: 104.8
  • Stamina: 194

Best IVs and Candy XL requirement

  • Rank 1 IVs: 0/13/14
  • Candy XL is not required

Recommended moves

  • Fast Move: Spark
  • Charged Moves: Spark and Thunderbolt

2) Clodsire

Base stats

  • Attack: 94.2
  • Defense: 119.4
  • Stamina: 209

Best IVs and Candy XL requirement

  • Rank 1 IVs: 0/14/13
  • Candy XL is not required

Recommended moves

  • Fast Move: Poison Sting
  • Charged Moves: Earthquake and Sludge Bomb

3) Pelipper

Base stats

  • Attack: 123.2
  • Defense: 128.7
  • Stamina: 114

Best IVs and Candy XL requirement

  • Rank 1 IVs: 0/12/15
  • Candy XL is not required

Recommended moves

  • Fast Move: Wing Attack
  • Charged Moves: Weather Ball (Water) and Hurricane

Best Switches for Pokemon GO’s Catch Cup: Great League Edition

Clodsire in Pokemon GO (Image via Sportskeeda || The Pokemon Company)

1) Clodsire

Base stats

  • Attack: 94.2
  • Defense: 119.4
  • Stamina: 209

Best IVs and Candy XL requirement

  • Rank 1 IVs: 0/14/13
  • Candy XL is not required

Recommended moves

  • Fast Move: Poison Sting
  • Charged Moves: Earthquake and Sludge Bomb

2) Medicham

Base stats

  • Attack: 106.9
  • Defense: 139.4
  • Stamina: 141

Best IVs and Candy XL requirement

  • Rank 1 IVs: 5/15/15
  • Candy XL is recommended, but it is not required

Recommended moves

  • Fast Move: Counter
  • Charged Moves: Ice Punch and Psychic

3) Sableye

Base stats

  • Attack: 121
  • Defense: 123.4
  • Stamina: 124

Best IVs and Candy XL requirement

  • Rank 1 IVs: 3/14/15
  • Candy XL is recommended, but it is not required

Recommended moves

  • Fast Move: Shadow Claw
  • Charged Moves: Foul Play and Return

Best Closers for Pokemon GO’s Catch Cup: Great League Edition

Quagsire in GO (Image via Sportskeeda || The Pokemon Company)

1) Clodsire

Base stats

  • Attack: 94.2
  • Defense: 119.4
  • Stamina: 209

Best IVs and Candy XL requirement

  • Rank 1 IVs: 0/14/13
  • Candy XL is not required

Recommended moves

  • Fast Move: Poison Sting
  • Charged Moves: Earthquake and Sludge Bomb

2) Shadow Quagsire

Base stats

  • Attack: 111.2 (+20% for the shadow bonus)
  • Defense: 111.9 (-20% for the shadow bonus)
  • Stamina: 161

Best IVs and Candy XL requirement

  • Rank 1 IVs: 0/15/14
  • Candy XL is not required

Recommended moves

  • Fast Move: Mud Shot
  • Charged Moves: Mud Bomb and Stone Edge

3) Serperior

Base stats

  • Attack: 110.2
  • Defense: 143.6
  • Stamina: 128

Best IVs and Candy XL requirement

  • Rank 1 IVs: 0/10/15
  • Candy XL is not required

Recommended moves

  • Fast Move: Vine Whip
  • Charged Moves: Frenzy Plant and Aerial Ace

You can read about the five best teams for the Catch Cup: Great League Edition of Pokemon GO here.

For more similar information, consider following Sportskeeda's Pokemon hub.

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

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKifoLKuu81op6ijlaK8r3nGqGSbnaOpeqSt05yfZpulpXqovsSaq2aklZa0trGMnpuirJmku27AxJqkZpuYpLaksdI%3D