Bucks’ Damian Lillard expects to return for Game 2 against Pacers

Milwaukee All-NBA guard Damian Lillard expects to play Tuesday night when the Bucks and Indiana Pacers resume their first-round playoff series in Indianapolis.

Apr 22, 2025 - 18:20
 0
Bucks’ Damian Lillard expects to return for Game 2 against Pacers

INDIANAPOLIS — Milwaukee All-NBA guard Damian Lillard expects to play Tuesday night when the Bucks and Indiana Pacers resume their first-round playoff series in Indianapolis.

Indiana won Game 1 to take the lead in the best-of-seven series.

Lillard told reporters after a morning shootaround that he would see how his right calf feels before determining how much he would play. He missed more than a month because of deep vein thrombosis, with his last appearance for the Bucks coming March 18.

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_1f3698012d800918d45ee7c50f11b101', 'NBA', 'dc991c88-8a5e-4820-8664-593270e4eea7');

He scored 18.3 points and had 9.3 assists and 5.5 rebounds while shooting 35.5 per cent overall and 38.9 per cent from three-point range in this season’s four regular-season games against Indiana.

Indiana ousted Milwaukee in the first round last year, too, when Lillard averaged 31.3 points in last year’s first-round series, Indiana won 4-2.

Two-time league MVP Giannis Antetokounmpo missed all six of those games but scored 36 points and grabbed 12 rebounds in Saturday’s 117-98 loss.