Cavaliers’ Darius Garland ruled out for Game 3 vs. Heat due to toe injury

1 month ago 49

Rommie Analytics

If the Cleveland Cavaliers are going to pick up a road playoff win on Saturday, they’ll have to do it without the services of Darius Garland.

The two-time All-Star guard was ruled out for Game 3 against the Heat in Miami due to a lingering toe injury, the team announced pre-game.

Garland had battled the same injury toward the end of the regular season and appeared to aggravate it in the fourth quarter of Cleveland’s Game 2 win on Wednesday.

Cavaliers head coach Kenny Atkinson said Garland would plan to test the health of his toe prior to tip-off on Saturday, but the 25-year-old did not take the court for his usual pre-game warmup slot.

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_6e359c85cc7381a677cd748726ca7861', 'NBA', 'f7026a37-1b71-4fc5-90f3-d9f6d3f25fe2');

The starting guard has been an impact player as Cleveland has started the first round with a 2-0 lead heading into Game 3, averaging 24.0 points and 7.0 assists on 51.6/ 41.2/ 90.0 per cent shooting splits.

Garland averaged 20.6 points and 6.7 assists through 75 regular-season appearances as he helped the Cavs to the East’s top seed and a 64-18 record — Cleveland’s second-best win total in franchise history.

Fifth-year guard Sam Merrill will start in Garland’s place.

Game 3 gets going at 1:00 p.m. ET / 10:00 am PT.

Read Entire Article