// Gulf Coast League l124 - {1:1 1:3}
var round = schedule.rounds;

// ----------------------------------------------------------------------
// round one

round[0].name = "Round 1";
round[0].summary = "Winners advance to the Finals"; // text at bottom of the table

var game = round[0].series[0].games;
round[0].series[0].matchup = "TBD @ TBD";
game[0].tbd = ["Aug 28", "TBD @ TBD"]

var game = round[0].series[1].games;
round[0].series[1].matchup = "TBD @ TBD";
game[0].tbd = ["Aug 28", "TBD @ TBD"];

// ----------------------------------------------------------------------
// finals

round[1].name = "Finals";
round[1].summary = "";

var game = round[1].series[0].games;
round[1].series[0].matchup = "TBD vs TBD";
game[0].tbd = ["Aug 29", " (If Necessary)"];
game[1].tbd = ["Aug 30", " (If Necessary)"];
game[2].tbd = ["Sept 1", " (If Necessary)"];

// The wild-card team would be the team with the best overall record among those teams who were not division winners.																							
																							
// The division winner with the best regular season percentage will meet the wild-card team in a one-game playoff. The division winner will be the home team. (Note: Exception would be if these two teams come out of same division. See explanation at end.).																							
																							
// This game would be played on the same day that the other two division winners meet in a one-game playoff. The team with the best winning percentage would be the home team.																							
																							
// The winner of each game would then advance to the final best-of-3 series for the GCL championship. The games would be home-road-home. The team with the best winning percentage will play the first game at home. 																							
