Originally posted on SportsNet
The Edmonton Oilers‘ lineup for Game 1 is beginning to come into focus.
Stuart Skinner will start in net, while defenceman Jake Walman is ready to play after missing the final five games of the season with an undisclosed injury, head coach Kris Knoblauch told reporters on Monday.
Skinner scuffled to an .896 save percentage in 51 games on the season after leading the Oilers to Game 7 of the Stanley Cup Final last year, making 23 appearances along the way.
Walman was picked up from the San Jose Sharks in a trade ahead of the deadline. In 15 games with the Oilers, he logged one goal and seven assists.
Meanwhile, defenceman John Klingberg was ruled out, leaving the decision for the sixth blue liner between Josh Brown and Cam Dineen.
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_799daf4afb9c9d34379c1c1e0d8941f0', 'NHL', 'a37ae3d7-b2f6-4a31-8115-06366847737c');
Fellow defenceman Brett Kulak is en route to Los Angeles after staying home for the birth of his second daughter, Skyler.
Forward Trent Frederic, who was acquired from the Boston Bruins ahead of the trade deadline, is a game-time decision after re-aggravating an ankle injury on April 5.
The Oilers visit the Los Angeles Kings to begin the playoffs for the fourth straight season on Monday at 10 p.m. ET / 8 p.m. MT Live coverage is available on Sportsnet and Sportsnet+.
More from Sportsnet Can this version of Oilers beat Kings again?Originally posted on SportsNet
Published: 2 weeks ago
Oilerhockey is in no way affiliated with the NHL or the Edmonton Oilers hockey club.
Copyright © 2009 - 2025 oilerhockey.com | Contact us at admin@oilerhockey.com | View our Privacy Policy or DMCA Policy