// International League l117 - {2:5 1:5}
var round = schedule.rounds;

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

round[0].name = "Round 1";
round[0].summary = "Winner advances to Round 2"; // text at bottom of the table

var game = round[0].series[0].games;
round[0].series[0].matchup = "Louisville Bats vs. South Division Winner";
game[0].tbd = ["Sept 3", "TBD @ TBD"];
game[1].tbd = ["Sept 4", "TBD @ TBD"];
game[2].tbd = ["Sept 5", "TBD @ TBD"];
game[3].tbd = ["Sept 6", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 7", "TBD @ TBD (If Necessary)"];

// only used by PCL and IL to show gameday links
game[0].gameday = true;
game[1].gameday = true;
game[2].gameday = true;
game[3].gameday = true;
game[4].gameday = true;

var game = round[0].series[1].games;
round[0].series[1].matchup = "North Division Winner vs. Wild Card";
game[0].tbd = ["Sept 3", "TBD @ TBD"];
game[1].tbd = ["Sept 4", "TBD @ TBD"];
game[2].tbd = ["Sept 5", "TBD @ TBD"];
game[3].tbd = ["Sept 6", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 7", "TBD @ TBD (If Necessary)"];

// only used by PCL and IL to show gameday links
game[0].gameday = true;
game[1].gameday = true;
game[2].gameday = true;
game[3].gameday = true;
game[4].gameday = true;


// ----------------------------------------------------------------------
// round two

round[1].name = "Round 2";
round[1].summary = "Winner advances to Bricktown Championship";

var game = round[1].series[0].games;
round[1].series[0].matchup = "Finals";
game[0].tbd = ["Sept 9", "TBD @ TBD"];
game[1].tbd = ["Sept 10", "TBD @ TBD"];
game[2].tbd = ["Sept 11", "TBD @ TBD"];
game[3].tbd = ["Sept 12", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 13", "TBD @ TBD (If Necessary)"];

// only used by PCL and IL to show gameday links
game[0].gameday = true;
game[1].gameday = true;
game[2].gameday = true;
game[3].gameday = true;
game[4].gameday = true;
