Raptors’ Gradey Dick out vs. Magic with pelvis injury

The Toronto Raptors will be missing one of their more dangerous shooters in a rematch with the Orlando Magic on Tuesday.

Mar 3, 2025 - 21:36
 0
Raptors’ Gradey Dick out vs. Magic with pelvis injury

The Toronto Raptors will be missing one of their more dangerous shooters in a rematch with the Orlando Magic on Tuesday.

Gradey Dick has been ruled out with ischial tuberosity; contusion as the official diagnosis, the team announced Monday. The ischial tuberosity is a bone in the lower pelvis.

The sophomore guard exited just before halftime Sunday in the Raptors’ 104-102 win over the Magic.

Dick took a hard spill in the final minute of the first half after a falling RJ Barrett collided with Magic guard Cole Anthony, who then fell into the 22-year-old Raptors guard. He stayed down for a bit and was tended to by team staff before getting up and walking to the locker rooms on his own accord.

After the game, head coach Darko Rajakovic told reporters that the second-year wing had passed concussion protocol but had suffered some hyperextension on his knee, a “sit-bone contusion,” and a split lip.

Dick is averaging 14.4 points, 3.6 rebounds and 1.8 assists through 54 games played this season. He’s also shooting 35 per cent from beyond the arc.

The Raptors also announced Ochai Agbaji will miss his second game in a row with an ankle injury.

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_e42244cc1ae825fdc01c86944e624452', 'NBA', '34bf7d02-ffcd-4161-a995-8e39b60548bc');