Canucks’ Pettersson remains day-to-day, Chytil doubtful to return

The Vancouver Canucks will need to wait a bit longer for Elias Pettersson and Nils Hoglander to return to the lineup.

Apr 1, 2025 - 22:14
 0
Canucks’ Pettersson remains day-to-day, Chytil doubtful to return

The Vancouver Canucks will need to wait a bit longer for Elias Pettersson and Nils Hoglander to return to the lineup while Filip Chytil may not return at all this season.

Head coach Rick Tocchet told reporters that Pettersson remains day-to-day but should be able to return before the regular season ends.

Holglander appears to be closer to a return than Pettersson, according to Tocchet, even though the forward has been in a red non-contract jersey.

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_a433bb595931891485d945ba4a058d70', 'NHL', '9f7afa41-c626-4d56-ac39-f1602e2206d7');

Tocchet also expressed doubt that Chytil will be able to play again this season as he continues to recover from a concussion. Chytil was hit from behind into the boards by Chicago Blackhawks forward Jason Dickinson on March 15 and hasn’t played since.

The 25-year-old has a documented history of concussions during his time with the New York Rangers.

Pettersson and Hoglander have been out of the lineup since getting injured against the Rangers on March 22. They returned to Vancouver while the team remained on the road.

Pettersson has 15 goals and 45 points in 63 games this season but recently has begun to turn his game around with points in five straight games before getting hurt. Hoglander has six goals and 21 points, six of which had come in his last five games.

The Canucks return to the ice Wednesday at home against the Seattle Kraken.