30 lines
1.2 KiB
JSON
30 lines
1.2 KiB
JSON
{
|
|
"name": "Snooker",
|
|
"outcomes": [
|
|
"Win",
|
|
"Loss",
|
|
"Draw"
|
|
],
|
|
"results": [
|
|
{ "name" : "Score", "description" : "Total points", "primary" : 1 }
|
|
],
|
|
"performance": [
|
|
"1st Frame",
|
|
"2nd Frame"
|
|
],
|
|
"columns": [
|
|
{ "name" : "P", "equation" : "$eventsplayed", "description" : "Games played" },
|
|
{ "name" : "W", "equation" : "$win", "priority" : 2, "description" : "Wins" },
|
|
{ "name" : "D", "equation" : "$draw", "description" : "Draws" },
|
|
{ "name" : "L", "equation" : "$loss", "description" : "Losses" },
|
|
{ "name" : "F", "equation" : "$scorefor", "description" : "Points for", "priority" : 3 },
|
|
{ "name" : "A", "equation" : "$scoreagainst", "description" : "Points against" },
|
|
{ "name" : "+-", "equation" : "$win - $loss", "description" : "Point difference", "priority" : 2 },
|
|
{ "name" : "PTS", "equation" : "$scorefor", "priority" : 1, "description" : "Points", "priority" : 1 }
|
|
],
|
|
"statistics": [
|
|
{ "name" : "Games Played", "equation" : "$eventsplayed" },
|
|
{ "name" : "Games Won", "equation" : "$win" },
|
|
{ "name" : "Win Percentage", "equation" : "$win / $eventsplayed * 100", "precision" : 2 }
|
|
]
|
|
} |