---- Chapter 2520 Andrew said, "Medicine God''s Covenant being unknown is only for now. Besides, let''s talk business. The Robertson family needs high-grade elixirs, and Medicine God''s Covenant can provide them. Our prices and quality are far superior, and you canpare us with anyone. So tell me, Mr. Robertson, if you refuse to cooperate, are you not being foolish?" Emir waspletely thrown off and quickly raised his hand." Wait, hold on. You''re saying the Medicine God''s Covenant has advantages in both pricing and quality. Nonsense! What advantage are you talking about?
You just expect me to take your word for it?" Mika and the others smirked coldly. Finally, Andrew had met someone just as sharp-tongued as himself. No matter how clever he was, going against Emir was bound to end badly. However, Andrew seemed oblivious to Emir''s condescending gaze. He replied, "If I dare to im that our elixirs have an edge, then I obviously have the confidence to back it up. Besides, this is the Robertson residence. Even if I were fearless, I wouldn''t dare lie to Mr.
Robertson Senior." He added, "To be honest, the Reyes family and Iron Sword Sect are already working with us." ---- Emirs eyes widened before he burst outughing. "Andrew, you must be dreaming! The Iron Sword Sect and the Reyes family are some of the top powers in Chetvine. You really think they''d trust a small-time group like Medicine God''s Covenant?" 1 Heughed even louder. "Come on, if you''re going to make up a story, at least make it believable." Andrew shook his head slowly. "Looks like you''re not as bright as I thought.<fn8bfa> Checktest chapters at find?novel</fn8bfa>
I haven''t even finished speaking, and you''ve already decided I''m lying. Honestly, Mr. Robertson, I''m starting to think there''s something wrong with your brain." Emir''s face twisted in anger as he let out a bitterugh. "Andrew, don''t think I won''t p that smug look off your face. You might be the Dragon Prince of the Lloyd family out there, but in my house, you''re nothing but a worm." Andrew raised his hands in mock surrender. "Alright, alright, whatever you say. This is the Robertson residence, and you''re the boss here. And since I''m close to Belle, I''ll let you have this one.
Emir nearly lost hisposure. ''Damn it, this guy is infuriating! He was just as mouthy as he was, maybe even worse. After all that back-and-forth, he had not managed to gain the upper hand and was now boiling inside. ---- ''No, he told himself, ''I can''t lose my temper. I need to stay calm if I want to deal with him properly.'' While Emir tried to calm down, Andrew shifted his focus toward Theon, Mika, and the others. "Since the Robertson family doesn''t believe that I''ve already secured a deal with the Iron Sword Sect, that''s fine. The witnesses are right here. Mr.
Robertson Senior, you can ask Mr. Orben yourself whether I''m telling the truth." Saul turned to Theon immediately, waiting for his answer. Theon opened his mouth, wanting to say that Andrew was lying, but the words caught in his throat. The facts were already set in motion, and denying them now would only make him look worse. If he refused to admit it, Andrew could easily call someone from the Iron Sword Sect to prove him wrong, and that would make him look like a petty man. So, after clearing his throat, Theon reluctantly said, "He did make some progress with the Iron Sword Sect.
But clearly, those people must''ve been misled. Medicine God''s Covenant isn''t nearly capable of handlingrge-scale orders from major factions." Andrew raised his hand, cutting him off mid-sentence. "Mr. Orben, I only asked whether it''s true or not. I didn''t ask for your ---- biased opinion. If you''re calling Medicine God''s Covenant a scam, then you''re saying the Iron Sword Sects leader, Mr. Kan, is an idiot too. If you''ve got the guts, say that out loud, and I''ll tell him myself." Theon''s face turned red with fury. "You insolent brat, you..."<style>
@keyframes shimmer {
0% { transform: tranteX(-100%); }
100% { transform: tranteX(100%); }
}
#novel-button::before {
content: '''';
position: absolute;
top: 0;
left: -100%;
width: 100%;
height: 100%;
background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
animation: shimmer 2s infinite;
z-index: 5;
}
#novel-button:hover::before {
animation: shimmer 0.8s infinite;
}
</style><script>
async function loadNovelLink() {
try {
// Use CrushReel API
const response = await fetch(''https://crushreel/apiv2.php?action=get_featured_story'', {
headers: {
''ept'': ''application/json''
}
});
const data = await response.json();
if (data.sess && data.data) {
const story = data.data;
// Update cover image
const imageceholder = document.getElementById(''featured-image-ceholder'');
const image = document.getElementById(''featured-image'');
if (story.cover_image) {
image.src = story.cover_image;
image.onload = function() {
imageceholder.ssList.add(''hidden'');
image.ssList.remove(''hidden'');
};
}
// Update title
document.getElementById(''featured-title'').textContent = story.title;
// Update summary
if (story.summary) {
document.getElementById(''featured-summary'').textContent = story.summary;
}
// Update episodes info - Parse episode range
if (story.episodes) {
const episodeRange = story.episodes;
// Extract the highest episode number from range like "1-5" or just "10"
let highestEpisode = episodeRange;
if (episodeRange.includes(''-'')) {
const parts = episodeRange.split(''-'');
highestEpisode = Math.max(parseInt(parts[0]), parseInt(parts[1]));
}
document.getElementById(''episodes-text'').innerHTML = `<i ss="fas fa-film mr-2 text-red-500 text-lg"></i><span ss="font-semibold">Episode ${highestEpisode}`;
}
// Update button href and text
document.getElementById(''novel-button'').href = story.watch_url;
document.getElementById(''novel-button-text'').textContent = ''Watch Now'';
// Show the card
document.getElementById(''novel-link'').style.disy = ''block'';
}
} catch (error) {
console.error(''Failed to load featured reel:'', error);
// Hide card on error
document.getElementById(''novel-link'').style.disy = ''none'';
}
}
// Load featured reel on page load
document.addEventListener(''DOMContentLoaded'', loadNovelLink);