Add ice hockey preset
This commit is contained in:
42
presets/hockey.json
Normal file
42
presets/hockey.json
Normal file
@@ -0,0 +1,42 @@
|
||||
{
|
||||
"name": "Ice Hockey",
|
||||
"outcomes": [
|
||||
"Win",
|
||||
"Loss",
|
||||
"Overtime Loss"
|
||||
],
|
||||
"results": [
|
||||
{ "name" : "1st", "description" : "1st period goals" },
|
||||
{ "name" : "2nd", "description" : "2nd period goals" },
|
||||
{ "name" : "3rd", "description" : "3rd period goals" },
|
||||
{ "name" : "OT", "description" : "Overtime goals" },
|
||||
{ "name" : "T", "id" : "goals", "description" : "Total goals", "primary" : 1 }
|
||||
],
|
||||
"performance": [
|
||||
{ "name" : "G", "description" : "Goals" },
|
||||
{ "name" : "A", "description" : "Assists" },
|
||||
{ "name" : "H", "description" : "Hits" },
|
||||
{ "name" : "S", "description" : "Shots on goal" }
|
||||
],
|
||||
"columns": [
|
||||
{ "name" : "GP", "equation" : "$eventsplayed", "description" : "Games played" },
|
||||
{ "name" : "W", "equation" : "$win", "description" : "Wins" },
|
||||
{ "name" : "L", "equation" : "$loss", "description" : "Losses" },
|
||||
{ "name" : "OT", "equation" : "$overtimeloss", "description" : "Overtime Losses" },
|
||||
{ "name" : "P", "equation" : "$win * 2 + $overtimeloss", "priority" : 1, "description" : "Points" },
|
||||
{ "name" : "GF", "equation" : "$goalsfor", "priority" : 3, "description" : "Goals for" },
|
||||
{ "name" : "GA", "equation" : "$goalsagainst", "description" : "Goals against" },
|
||||
{ "name" : "Diff", "equation" : "$goalsfor - $goalsagainst", "priority" : 2, "description" : "Goal differential" },
|
||||
{ "name" : "L10", "equation" : "$last10", "description" : "Last 10" },
|
||||
{ "name" : "Strk", "equation" : "$streak", "description" : "Current streak" }
|
||||
],
|
||||
"metrics": [
|
||||
"Height",
|
||||
"Weight"
|
||||
],
|
||||
"statistics": [
|
||||
{ "name" : "GP", "equation" : "$eventsplayed", "description" : "Games played" },
|
||||
{ "name" : "P", "equation" : "$g + $assists", "description" : "Points" },
|
||||
{ "name" : "S%", "equation" : "$g / $s * 1 0 0", "precision" : 2 }
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user