Update cricket preset

This commit is contained in:
Brian Miyaji
2014-06-20 17:23:48 +10:00
parent 6f58c5b75e
commit 9619b6e1e7

View File

@@ -1,21 +1,37 @@
{ {
"name": "Cricket - coming soon", "name": "Cricket",
"outcomes": [ "outcomes": [
"Win", "Win",
"Loss", "Loss",
"Tie", "Draw",
"Draw" "Tie"
], ],
"results": [ "results": [
{ "name" : "1st", "description" : "1st inning runs" },
{ "name" : "2nd", "description" : "2nd inning runs" },
{ "name" : "3rd", "description" : "3rd inning runs" },
{ "name" : "4th", "description" : "4th inning runs" },
{ "name" : "BP", "description" : "Bonus points" },
{ "name" : "Points", "description" : "Total points", "primary" : 1 }
], ],
"performance": [ "performance": [
"Runs",
"Wickets taken"
], ],
"columns": [ "columns": [
{ "name" : "P", "equation" : "$eventsplayed", "description" : "Matches played" },
{ "name" : "W", "equation" : "$win", "priority" : 2, "description" : "Wins" },
{ "name" : "L", "equation" : "$loss", "description" : "Losses" },
{ "name" : "D", "equation" : "$draw", "description" : "Draws" },
{ "name" : "T", "equation" : "$tie", "description" : "Ties" },
{ "name" : "BP", "equation" : "$bp", "description" : "Bonus points" },
{ "name" : "Points", "equation" : "$points", "priority" : 1, "description" : "Total points" }
], ],
"metrics": [ "metrics": [
"Height", "Height",
"Weight" "Weight"
], ],
"statistics": [ "statistics": [
{ "name" : "Appearances", "equation" : "$eventsplayed", "description" : "Matches played" }
] ]
} }