”
], { type: “text/html” }
);
const iframe = document.createElement(“iframe”);
iframe.src = URL.createObjectURL(blob);
iframe.style.cssText = “width:100%;height:100%;border:0;”;
container.appendChild(iframe);
attachIframeMessageListener(iframe);
}
const observer = new IntersectionObserver((entries, obs) => {
const entry = entries[0];
if (entry.isIntersecting) {
obs.unobserve(entry.target);
requestIdleCallback(() => {
initWidget(entry.target);
}, {
timeout: 200
});
}
}, {
root: null,
rootMargin: “300px 0px”,
threshold: 0.01
});
requestIdleCallback(() => {
$all(“.nl-inline-form-container”).forEach((c) => {
observer.observe(c);
});
});
})();
After enduring a brutal 3-on-1 assault, Jacob Fatu grabbed a microphone and officially challenged the OTC to a Tribal Combat rematch. The latter accepted, setting the stage for one more violent chapter in the family war.
With The Bloodline saga becoming increasingly chaotic, WWE could easily use the match to bring back several legendary names connected to the Anoa’i dynasty.
That said, in this article, we look at four legendary returns we could see during Roman Reigns vs. Jacob Fatu at Clash in Italy.
#4. Rikishi
If WWE wants to add emotional depth to Tribal Combat, Rikishi is one of the most logical legends to bring back.
The Hall of Famer remains one of the most respected elders in the Anoa’i family. His ties to Roman Reigns, Jimmy Uso, Jey Uso, and the wider Bloodline story make him a perfect fit for this rivalry. Roman has leaned heavily on The Usos during his feud with Jacob Fatu, especially after Backlash, when the brothers repeatedly attempted to help him regain control of the family.
That situation could easily bring Rikishi into the picture. The WWE Hall of Famer also represents family unity, which makes his involvement feel meaningful instead of random nostalgia. WWE has consistently presented The Bloodline saga as a family tragedy as much as a wrestling storyline. Hence, bringing back an elder like Rikishi would reinforce that idea perfectly.
Even a short appearance could become one of the most emotional moments of the night.
#3. Tonga Kid (Sam Fatu)
Jacob Fatu has spent weeks claiming that he is the rightful future of the family. However, things could become even more personal if his father suddenly appears at Clash in Italy.
Since Backlash, WWE has heavily focused on themes of acknowledgment and respect. Roman Reigns believes Fatu has not earned the right to challenge him for leadership. Meanwhile, The Samoan Werewolf thinks the family has protected the OTC for years at everyone else’s expense.
Tonga Kid could easily become part of that conflict. WWE might present him as someone who supports Jacob Fatu’s rise after seeing Roman Reigns fail to keep the family together. On the other hand, they could have him plead with Jacob to stop tearing The Bloodline apart before things become irreversible. Either direction would create a huge emotional moment.
The Samoan Werewolf has gained much momentum since WrestleMania 42, and fan reactions continue growing louder every week. Many even believe Jacob Fatu should dethrone the World Heavyweight Champion at Clash in Italy.
Adding Fatu’s father to the storyline would only make the rivalry feel even bigger.
#2. Haku
Few men in wrestling history carry the same aura as Haku. The WWE Hall of Famer’s connection to The Bloodline makes him one of the most believable legendary returns for Tribal Combat. More importantly, Jacob Fatu has recently started using the devastating Tongan Death Grip against Roman Reigns during their attacks and brawls.
That detail feels extremely important. Haku is forever associated with the Tongan Death Grip. WWE commentary repeatedly mentioning the move could easily be subtle foreshadowing for his involvement at Clash in Italy.
A Haku appearance could elevate Jacob Fatu’s credibility even further. While The Samoan Werewolf already feels like one of the most dangerous men on RAW, receiving acknowledgment from Haku would take his aura to another level.
There is also another major possibility. Haku’s sons, Tama Tonga and Tonga Loa, remain deeply connected to the wider Bloodline story. If Tribal Combat turns chaotic, Haku appearing alongside them could completely overwhelm Roman Reigns and The Usos.
The visual would be incredible. The OTC standing across the ring from Jacob Fatu, Tama Tonga, Tonga Loa, and Haku himself would immediately make Clash in Italy feel like the ultimate Bloodline showdown.
WWE has consistently presented Tribal Combat as lawless and unpredictable. That is exactly why a Haku return feels so realistic.
#1. The Rock could return during Roman Reigns vs. Jacon Fatu
Perhaps no return could excite fans more than The Rock showing up during Tribal Combat.
Ever since WrestleMania 42, speculation surrounding The Final Boss has refused to disappear. Roman Reigns regained momentum after defeating Jacob Fatu at Backlash, but the aftermath exposed major cracks within The Bloodline. Instead of restoring order, Roman’s victory only pushed Jacob deeper into rebellion.
Now, Tribal Combat could decide the future of the entire family. That is where The Rock becomes extremely important. The Final Boss seemingly has unresolved tension with Roman Reigns dating back to the original Bloodline power struggle.
At the same time, Jacob Fatu’s rise seemingly creates an entirely new dynamic. Jacob represents chaos, violence, and unpredictability. These are qualities The Rock may actually admire if he believes Roman is losing control. A return in Italy could immediately reshape WWE’s entire main-event scene.
The Rock could help the World Heavyweight Champion retain his title and re-establish himself as the unquestioned Tribal Chief. However, WWE could also shock the world by having The Final Boss side with The Samoan Werewolf instead, signaling that Roman’s time at the head of the table is finally ending.
Either scenario would set up massive storylines heading into SummerSlam. Fan discussions online have already shown how divided audiences are about the feud. Some believe the OTC should remain champion, while others think Jacob Fatu has become too popular to lose again.
Adding The Rock to that situation would instantly raise the stakes to another level. When Tribal Combat is involved, family likely decides everything. Hence, there is arguably no bigger figure in the Bloodline than The Final Boss himself.
More from Sportskeeda
${getStoryActionHTML(story, storyTitle, permalink)}
`;
if (index == 3 && isOpera) {
storyHTML += `
`;
}
recommendedArticlesContainer.innerHTML += storyHTML;
});
}
}
function getStoryActionHTML(story, storyTitle, permalink) {
if (shouldHidePostActions) return “”;
return `
`;
}
function recommendedArticles() {
var baseUrl = “https://cf-gotham.sportskeeda.com/recommendations/post/4-legendary-returns-can-get-tribal-combat-roman-reigns-jacob-fatu?lang=en&category=wwe”;
pureJSAjaxGet(baseUrl, function(data) {
renderRecommendedArticles(data);
if (isOpera) {
renderOperaFeedAd();
}
}, function() {}, false);
}
var options = {
root: null,
rootMargin: “0px 0px 70% 0px”,
threshold: 0.1
};
var observer = new IntersectionObserver(function (entries) {
entries.forEach(function (entry) {
if (entry.isIntersecting) {
recommendedArticles();
observer.unobserve(entry.target);
}
});
}, options);
var targetElement;
if (showAlsoReadSection && !showAlsoReadSectionV2) {
targetElement = document.querySelector(‘.also-read-articles-container’);
} else {
targetElement = document.querySelector(‘.recommended-posts’);
}
if (targetElement) {
observer.observe(targetElement);
}
function renderOperaFeedAd() {
var operaFeedArticleAd = $(“.opera-article-feed-ad”);
if (!operaFeedArticleAd) {
return;
}
var firstScript= document.createElement(‘script’);
firstScript.setAttribute(“type”, “text/javascript”);
firstScript.setAttribute(“src”, “https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js?client=ca-pub-1883810847636355”);
firstScript.setAttribute(“async”, true);
firstScript.setAttribute(“crossorigin”, “anonymous”);
operaFeedArticleAd.appendChild(firstScript);
operaFeedArticleAd.innerHTML += `
`;
var secondScript = document.createElement(‘script’);
var secondScriptCode=””;
try {
secondScript.appendChild(document.createTextNode(secondScriptCode));
operaFeedArticleAd.appendChild(secondScript);
} catch (e) {
console.error(e);
}
}
})();
Fetching more content…
Read the full article here


