New York Yankees news: Team announces upcoming Star Wars night; 3-time All-Star blasts homer 415 fee

The New York Yankees are no strangers to the spotlight, and as the first month of the MLB season winds down, the updates are still coming. The team recently announced a return of the popular Star Wars Night at Yankee Stadium. It will be on Friday, May 6, and will feature a Yankees Yoda Bobblehead

The New York Yankees are no strangers to the spotlight, and as the first month of the MLB season winds down, the updates are still coming. The team recently announced a return of the popular Star Wars Night at Yankee Stadium. It will be on Friday, May 6, and will feature a Yankees Yoda Bobblehead giveaway. On the baseball side of things, Aaron Judge recently crushed a ball 415 feet against the Baltimore Orioles.

The New York Yankees have an American League-best record of 13-6 and are ahead of the Toronto Blue Jays by 0.5 games in the AL East. This division lead was recently established by a 10-5 victory over the Baltimore Orioles, in part thanks to a laser of a home run from Aaron Judge.

Talkin' Yanks on Twitter posted the homer that needs to be seen and recognized for the bomb it is.

march madness logo

70% Win

(110-25-1)

70% Win

(110-25-1)

70% Win

(110-25-1)

'; }); pollOptions.innerHTML = pollOptionsDom; pollCount.innerHTML = totalVotes + ' votes'; if (totalVotes > 10) { pollCount.classList.remove("hidden"); } } function trackBetsTodayPollImpression() { var intersectionObserverForArticlePoll = new IntersectionObserver( function(entries) { entries.forEach(function(entry) { var pollId = entry.target.getAttribute("data-poll-id"); if (POLLS_BY_ID[pollId]['impression_tracked']) return; if (!entry.target || !entry.isIntersecting || entry.intersectionRatio < 0.5) return; setTimeout(function() { if (isInViewport(entry.target)) { POLLS_BY_ID[pollId]['impression_tracked'] = true; var isDesktop = "1"; var gaPayload = { "question" : POLLS_BY_ID[pollId]['question'], "category": "Baseball", "page_url": window.location.href, "option1": POLLS_BY_ID[pollId]['option1'], "option2": POLLS_BY_ID[pollId]['option2'], } if (isDesktop) { gaPayload["device"] = "Desktop"; } else { gaPayload["device"] = "Mobile"; } gtag("event", "BETS_TODAY_POLL_IMPRESSION", gaPayload); intersectionObserverForArticlePoll.unobserve(entry.target); } }, 1000); }); }, { threshold: 0.5 } ); var pollElements = document.querySelectorAll('.bets-today-poll'); pollElements.forEach(function(pollElement) { var isAnswered = pollElement.querySelector(".poll-option-answered"); if (!isAnswered) { intersectionObserverForArticlePoll.observe(pollElement); } }) } return { answerPollX: answerPollX, }; }(); "AARON JUDGE BOMB AND THE YANKS LEAD 10-2" -@TalkinYanks

Aaron judge has been one of the best home run hitters in the MLB since he entered the league in 2016.

New York Yankees try to boost attendance with themed game

Houston Astros v Toronto Blue Jays

Baseball and Star Wars don't have much in common, except for the hope that the underdog can triumph against the powerful villain, which actually makes the Yankees upcoming Star Wars Night logical. As the Darth Vader of the MLB, the world will be cheering on the underdog Texas Rangers who will take on the home team on Friday, May 6.

Themed nights like this do typically lead to a boost in attendance, but if the only Star Wars themed addition to the game is a Yoda Bobblehead, the night won't be very memorable for the paying fans.

The team announced the Star Wars Night on their official Twitter account.

"Feel the force next Friday at the Stadium as we celebrate Star Wars Night!" - @ New York Yankees

It will be interesting to see this combination of the biggest science fiction franchise on the planet and the biggest MLB franchise in the world. Personally, I hope this leads to a race between the New York teams to capture new audiences, maybe resulting in a Star Trek Night hosted by the New York Mets. Set phasers to fun!

April could not have gone much better for the New York Yankees, and as the season carries on into May, the team hopes to find the same level of success, more importantly in the record books but also in enhancing the fan experience.

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

ncG1vNJzZmivp6x7tLzOq6uso5WasaJ6wqikaJqRqLKjrculZqedp6h6r7HWZrCoqptixqK6yp6crGWemsS0edOemKZlkaO7sMHNnJysZaWlsLC5yKeeZquklr9uw8CrqmammZy1tXmSZquipZVirq24jKyrmqpdl7miv9OsZKGnnZq%2FboCQbmSfnZWpeqi11Z5knKSll3qjsdKtZKudk6S%2FpXnApWSaqKKeuW5%2BmA%3D%3D

 Share!