Avalanche activate Gabriel Landeskog from IR, won’t play in Game 2

Colorado Avalanche captain Gabriel Landeskog appears set to return to the lineup for the Stanley Cup Playoffs.

Apr 22, 2025 - 04:26
 0
Avalanche activate Gabriel Landeskog from IR, won’t play in Game 2

Colorado Avalanche captain Gabriel Landeskog appears set to return to the lineup for the Stanley Cup Playoffs.

The Avalanche activated Landeskog from the injured reserve Monday, ahead of Game 2 of their opening-round series against the Dallas Stars.

He took warm ups for the game, but was a late scratch so his return will have to wait for Game 3.

The Swedish star has battled knee injuries for the past three years and has had two surgeries along the way. He hasn’t played in the NHL since June 26, 2022, when Colorado defeated the Tampa Bay Lightning to capture the Stanley Cup.

Landeskog rejoined the Avalanche last week for practice after a two-game rehab stint in the American Hockey League.

The 32-year-old has 571 points (248 goals, 323 assists) in 738 games over 11 seasons with the Avalanche. He also has 67 points (27 goals, 40 assists) in 69 playoff games.

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_7dc53ece2858300798354d98042450e6', 'NHL', '87a70085-8966-4c17-9a17-0cd4683f1358');

Colorado holds a 1-0 series lead after defeating Dallas 5-1 Saturday.

Watch the Avalanche and Stars face off beginning at 9:30 p.m. ET / 6:30 p.m. PT on Sportsnet 360 and Sportsnet+.