Stars’ Jason Robertson week-to-week with lower-body injury

The Dallas Stars have suffered a big injury blow on the eve of the Stanley Cup Playoffs.

Apr 18, 2025 - 20:05
 0
Stars’ Jason Robertson week-to-week with lower-body injury

The Dallas Stars have suffered a big injury blow on the eve of the Stanley Cup Playoffs.

Star winger Jason Robertson was classified as week-to-week, per Stars senior staff writer Mike Heika, after sustaining a lower-body injury in the the team’s regular-season finale on Wednesday.

Robertson collided with Nashville Predators forward Michael McCarron before heading to the bench, wincing in pain. Emma Lingen, the Predators reporter for The Hockey Newsreported that Robertson left Bridgestone Arena with a brace on his right knee.

“The purpose of resting people down the stretch was to hopefully avoid injury,” Stars head coach Peter DeBoer told reporters after the game, according to the team’s reporter for NHL.com, Mike Heika. “Unfortunately we didn’t do that with the Roberston injury. So, tough night.”

  • Watch the Stanley Cup Playoffs on Sportsnet
  • Watch the Stanley Cup Playoffs on Sportsnet

    The NHL’s best are ready to battle for the right to hoist the Stanley Cup. Watch every game of the Stanley Cup Playoffs on Sportsnet and Sportsnet+ beginning on April 19.

    Broadcast Schedule

Robertson had 35 goals and 45 assists for 80 points while playing all 82 games this season.

When asked if there was any hope of Robertson playing against the Avs, DeBoer responded, “If the series goes more than a week, then yeah.”

The Stars open their series against the Colorado Avalanche on Saturday night in Dallas. Live coverage is available on Sportsnet and Sportsnet+.

–with files from The Associated Press

if (!res.ok) { throw new Error('Failed to fetch odds data'); }

const data = await res.json(); const oddsData = data?.data?.game?.details?.current_line; const visitingTeam = data?.data?.game?.visiting_team; const visitingTeamLogo = data?.data?.game?.visiting_team?.image_url_90; const homeTeam = data?.data?.game?.home_team; const homeTeamLogo = data?.data?.game?.home_team?.image_url_90; const gameTimestamp = data?.data?.game?.details?.timestamp;

return { oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp }; }

async function renderBetMGM(componentId, league, gameId) { let oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp, error;

const container = document.getElementById(componentId + '-odds'); if (!container) return;

try { ({ oddsData, visitingTeam, visitingTeamLogo, homeTeam, homeTeamLogo, gameTimestamp } = await fetchOddsData(league, gameId)); } catch (err) { error = err.message; }

if (error) { container.innerHTML = `

Error: ${error}

`; return; }

if (!oddsData) { container.innerHTML = `

Odds data not available

`; return; }

let gameDate = new Date(gameTimestamp * 1000); const gameDateFormatted = gameDate.toLocaleDateString('en-US', { year: 'numeric', month: 'long', day: 'numeric' });

container.innerHTML = `

BetMGM Odds
Moneyline
${visitingTeam.short_name}
${oddsData.away_money > 0 ? `+${oddsData.away_money}` : oddsData.away_money}
${homeTeam.short_name}
${oddsData.home_money > 0 ? `+${oddsData.home_money}` : oddsData.home_money}
Spread
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === visitingTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_points : oddsData.fav_points > 0 ? `-${oddsData.fav_points}` : `+${Math.abs(oddsData.fav_points)}`}
${oddsData.fav_id === homeTeam.id ? oddsData.fav_money > 0 ? `+${oddsData.fav_money}` : oddsData.fav_money : oddsData.underdog_money > 0 ? `+${oddsData.underdog_money}` : oddsData.underdog_money}
Over/Under
O ${oddsData.total}
${oddsData.over_money > 0 ? `+${oddsData.over_money}` : oddsData.over_money}
U ${oddsData.total}
${oddsData.under_money > 0 ? `+${oddsData.under_money}` : oddsData.under_money}

`; }

// Example usage renderBetMGM('block_40d21fd49a5a18cd4c605ede806791fa', 'NHL', '36fae977-cf10-4d47-b4d7-ac4234a54845');