// Pacific Coast League l112 - {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 = "Pacific South Division Winner vs Pacific North Division Winner";      // text at top of the table
game[0].tbd = ["Sept  3", "TBD @ TBD"];
//game[0] = new Game(["game-id-06", "final", "t529", "1", "t105", "0"]);
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)"];


var game = round[0].series[1].games;
round[0].series[1].matchup = "American South Division Winner vs American North Division Winner";
game[0].tbd = ["Sept  3", "TBD @ TBD"];
//game[0] = new Game(["game-id-06", "final", "t556", "1", "t238", "0"]);
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)"];

// ----------------------------------------------------------------------
// 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 = "Pacific Conference Champion vs American Conference Champion";
game[0].tbd = ["Sept 9", "TBD @ TBD"];
game[1].tbd = ["Sept 10", "TBD @ TBD"];
game[2].tbd = ["Sept 12", "TBD @ TBD"];
game[3].tbd = ["Sept 13", "TBD @ TBD (If Necessary)"];
game[4].tbd = ["Sept 14", "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;
