5 best characters for Thundering Pulse in Genshin Impact

June 2024 ยท 5 minute read

The Genshin Impact version 3.7 update will be released within 24 hours. The new patch is bringing back some of the most popular characters and weapons, such as Yoimiya and her 5-star signature weapon, Thundering Pulse. This event-limited bow has an amazing set of stats and passives, making it one of the best weapons in Genshin Impact.

Players can pull Thundering Pulse from the Epitome Invocation Wish during the entire Phase I period of version 3.7. This article will list some of the best characters in Genshin Impact that are well-suited for this 5-star bow.

Thundering Pulse stats and the best characters that can use it in Genshin Impact

Thundering Pulse provides a lot of CRIT DMG (Image via HoYoverse)

Thundering Pulse is one of the best weapons Bow DPS units in Genshin Impact can use, thanks to all the buffs and stats it provides. It has 66.2% CRIT DMG secondary stats and increases the wielder's ATK by 20% from the passives. In addition, the equipping character also gains a buff that increases their Normal Attack DMG by 12% to 40% at refinement rank one.

Here are some of the best units for Thundering Pulse in the game:

1) Yoimiya

Thundering Pulse is Yoimiya's best weapon (Image via HoYoverse)

Thundering Pulse is Yoimiya's signature weapon, so it goes without saying that she is the best character that can use this weapon at its full potential. This 5-star bow provides an insane amount of CRIT DMG. Additionally, the weapon's passive effects are literally designed to match Yoimiya's playstyle since she mostly relies on her Normal Attacks to deal Pyro damage to her opponents.

2) Childe (Tartaglia)

Childe is an amazing Hydro unit (Image via HoYoverse)

Childe is one of the best main DPS units in Genshin Impact. Interestingly, thanks to his playstyle, he can use many bows in the game and still dish out a ton of damage, and Thundering Pulse is one of them. Like Yoimiya, Childe's playstyle mostly relies on spamming his Normal Attacks, making this 5-star Bow a really good option for him.

3) Fischl

Fischl is an amazing Electro character (Image via HoYoverse)

Thundering Pulse has a very high Base ATK and provides a ton of CRIT DMG, which is exactly what Fischl needs. Whether she is being used as a sub or main DPS, this bow will always be one of her best options in the game. Players can also build a Physical main DPS Fischl with Thundering Pulse.

4) Ganyu

Ganyu is one of the strongest characters (Image via HoYoverse)

Ganyu is one of the most powerful main DPS units in Genshin Impact. Since most of her damage comes from her Charged Attacks when used as a main DPS unit, she won't be able to profit from Thundering Pulse's passives. However, the bow has a very high Base ATK and provides a ton of CRIT DMG, so it is a viable option for players if they don't have Ganyu's signature weapon or any other better option.

5) Aloy

Aloy is a Cryo unit (Image via HoYoverse)

Aloy is the rarest character in the game, and most players might not have her because she was only available for a short period of time when HoYoverse did a collab event with Guerrilla Games. She is a 5-star Cryo unit in Genshin Impact and is considered one of the worst DPS units.

Nonetheless, Aloy can still use the Thundering Pulse pretty well, thanks to its stats and passives, which buffs her damage enough to debate that it could be her best in-slot weapon as well.

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

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJ2jpbyzwNJomZ6rpGKwqa3RmpqtnaKoerW01KebnqqZo7RuvNSlqp5ll5q7tLTIp2SipaCWsLU%3D