Maple Leafs’ Marner, Stolarz could return vs. Kraken

The Toronto Maple Leafs’ injury situation appears to be improving.

Feb 6, 2025 - 03:19
 0
Maple Leafs’ Marner, Stolarz could return vs. Kraken

The Toronto Maple Leafs‘ injury situation appears to be improving.

Coach Craig Berube told reporters on Wednesday that star forward Mitch Marner and goaltender Anthony Stolarz both could return to the lineup Thursday in Seattle against the Kraken.

Berube seemed to be more certain about Marner, saying “I think there is a good possibility he could play (Thursday).”

Marner missed Tuesday’s win over the Calgary Flames with a lower-body injury. He is listed as day-to-day.

Marner, who is slated to play for Canada at the 4 Nations Face-Off next week, was set to skate with Stolarz and a few other players Wednesday in Seattle for some individual work.

Stolarz has been out since Dec. 12 with a lower-body injury

“(Stolarz) felt a lot better yesterday with his timing and tracking pucks and things like that,” Berube said. “He’s improving, he’s getting to the point where he’s ready.”

Stolarz has been one of the better goalies in the league this season after signing in Toronto from Florida. In 17 games, the 31-year-old netminder has a sparkling 2.15 goals-against average and is tied for a league-best .927 save percentage.

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_6e1ca15f0379e9feccedc02bcae0bbdc', 'NHL', '01be2c6d-c3a1-4049-a8f8-b6227c832575');