Bednar: Landeskog ‘an option’ to play for Avalanche vs. Stars

It sounds like Gabriel Landeskog could make his long-awaited return to the NHL during the Colorado Avalanche‘s first-round playoff series against the Dallas Stars. Coach Jared Bednar said Friday that the team captain will be considered for Colorado’s lineup. “He’s getting close,” Bednar said. “Obviously, every day I feel like he’s getting a little quicker, a little bit more confident and a little bit more sure of himself. He’ll be an option for us in the series.” Landeskog rejoined the Avalanche earlier this week for practice after a two-game rehab stint in the AHL. The Swedish star has battled knee injuries the last three years, and has had two surgeries. His last game was Colorado’s Game 6 win over the Tampa Bay Lightning in the 2022 Stanley Cup Final. The 32-year-old Landeskog played back-to-back games for the AHL’s Colorado Eagles last weekend. The Stars host the Avalanche in Game 1 on Saturday at 8:30 p.m. ET / 5:30 p.m. PT on Sportsnet 360 and Sportsnet+. 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 ${gameDateFormatted} VS 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} Powered by ${gameDateFormatted} VS Powered by `; } // Example usage renderBetMGM('block_cc96e916188b0f6ad59ee29a45d324ae', 'NHL', '36fae977-cf10-4d47-b4d7-ac4234a54845');

Apr 18, 2025 - 22:48
 0
Bednar: Landeskog ‘an option’ to play for Avalanche vs. Stars

It sounds like Gabriel Landeskog could make his long-awaited return to the NHL during the Colorado Avalanche‘s first-round playoff series against the Dallas Stars.

Coach Jared Bednar said Friday that the team captain will be considered for Colorado’s lineup.

“He’s getting close,” Bednar said. “Obviously, every day I feel like he’s getting a little quicker, a little bit more confident and a little bit more sure of himself. He’ll be an option for us in the series.”

Landeskog rejoined the Avalanche earlier this week for practice after a two-game rehab stint in the AHL.

The Swedish star has battled knee injuries the last three years, and has had two surgeries. His last game was Colorado’s Game 6 win over the Tampa Bay Lightning in the 2022 Stanley Cup Final.

The 32-year-old Landeskog played back-to-back games for the AHL’s Colorado Eagles last weekend.

The Stars host the Avalanche in Game 1 on Saturday at 8:30 p.m. ET / 5:30 p.m. PT on Sportsnet 360 and Sportsnet+.

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_cc96e916188b0f6ad59ee29a45d324ae', 'NHL', '36fae977-cf10-4d47-b4d7-ac4234a54845');