Finding a Shiny is one of the most satisfying things in Pokemon Scarlet and Violet. However, even with the Shiny Charm, it can be incredibly time-consuming to find them. Thankfully, Game Freak introduced a new system to help players find the Pocket Monster of their dreams: Shiny Sandwiches.
Pokemon Scarlet and Violet let players craft sandwiches to share with their team, which endow them with various useful buffs. This allows you to find specific types of monsters a bit easier. You can also craft Shiny sandwiches, which will enhance your chances of finding specific types of Pokemon.
That said, what do you need to know about making a Shiny Fighting Sandwich?
Cooking up a Shiny Fighting Sandwich in Pokemon Scarlet and Violet
If you want to have the coolest-looking Annihilape in Pokemon Scarlet and Violet, you will want to find a shiny one. That will take forever, though, unless you’re overwhelmingly lucky. Each type has a specific recipe you’ll want to follow, and they’re going to take a little work.
To craft a Shiny Fighting Sandwich in Pokemon Scarlet and Violet, you'll want to farm 5 and 6-star Tera Raids. The first ingredient is two Salty Herba Mysticas, so you will want to do as much of this as possible to have a shot at the proper ingredient. You aren’t guaranteed to get them to drop, so it might take some time.
How to craft Shiny Fighting Sandwich
- Farm Tier 5 and 6-star Tera battles for 2x Salty Herba Mystica
- Purchase some Pickles
- Make sure you have a sandwich pick (Red works fine)
- Open the Sandwich menu at a picnic, and press X to start Creative Mode
- Create a recipe using a few pickles across the bread. The Herba Mystica will be used as a seasoning.
- Put the other bread on top, and put your sandwich pick in
This will grant you Sparkling Power 3 (Fighting), Title Power 3 (Fighting), and Encounter Power 3 (Fighting). However, one important piece of advice is to turn off autosave before you craft sandwiches.
You can accidentally waste ingredients by not putting them properly on a sandwich or burning through a few and not finding any Shiny fighting-types in Pokemon Scarlet and Violet.
Therefore, turning off the auto-save is recommended before you attempt Shiny farming. That way, if your sandwiches fail and you find nothing useful, you can always reload and use your ingredients again.
After all, it’s easy to go to the store and buy pickles. You aren’t guaranteed Salty Herba Mystica in Pokemon Scarlet and Violet. To get two of them, you may have to do a significant amount of Tera Raids, so you want to make every single sandwich count.
The Tera Raids are worth it anyway, as higher-tier events grant better rewards. But if you want to Shiny hunt, this will be your best bet. If you want to know specific areas you should travel to, a few boast good Fighting-types.
For example, North Province (Area One) can grant you Gallade, the powerful split-evolution of Kirlia. Meanwhile, the Socarrat Trail boasts the classic Heracross, the mighty Bug/Fighting type.
And, of course, you can head to The Great Crater of Paldea, which will undoubtedly have some Fighting-types. These include Great Tusk and Slither Wing for Scarlet, while Violet has Iron Hands and Iron Valiant. There are plenty of Fighting-types to capture in Pokemon Scarlet and Violet. With this sandwich in hand, catching an amazing Shiny for your team will be easier.
You may also check out our other Pokemon Scarlet and Violet coverage:
Indigo Disk release date & time || Best starters for Scarlet and Violet || All active Mystery Gift codes || Dialga and Palkia Spotlight item drops || Indigo Disk Pokedex
Quick Links
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": 1355000, "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(1355000); 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(1355000) >= 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(1355000) .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 }); })();ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaKifoLKuu81on6ivXZi8sLeMrJ%2Bipqlis6qzx62gp59dqK6vsNaimqFloKS4prnOp2Ssm5GnuabAjK%2BgqKSVqQ%3D%3D