Update presets
This commit is contained in:
@@ -79,7 +79,6 @@
|
|||||||
"event_teams" : "2",
|
"event_teams" : "2",
|
||||||
"sportspress_event_hide_child_positions" : "yes",
|
"sportspress_event_hide_child_positions" : "yes",
|
||||||
"event_show_players" : "yes",
|
"event_show_players" : "yes",
|
||||||
"event_show_extras" : "no",
|
|
||||||
"event_show_total" : "yes",
|
"event_show_total" : "yes",
|
||||||
"sportspress_event_results_reverse_teams" : "yes",
|
"sportspress_event_results_reverse_teams" : "yes",
|
||||||
"sportspress_event_performance_mode" : "values",
|
"sportspress_event_performance_mode" : "values",
|
||||||
|
|||||||
@@ -50,7 +50,6 @@
|
|||||||
"options": {
|
"options": {
|
||||||
"event_teams" : "2",
|
"event_teams" : "2",
|
||||||
"event_show_players" : "yes",
|
"event_show_players" : "yes",
|
||||||
"event_show_extras" : "yes",
|
|
||||||
"event_show_total" : "yes",
|
"event_show_total" : "yes",
|
||||||
"sportspress_event_performance_mode" : "values",
|
"sportspress_event_performance_mode" : "values",
|
||||||
"event_show_player_numbers" : "no",
|
"event_show_player_numbers" : "no",
|
||||||
|
|||||||
@@ -59,7 +59,6 @@
|
|||||||
"options": {
|
"options": {
|
||||||
"event_teams" : "2",
|
"event_teams" : "2",
|
||||||
"event_show_players" : "yes",
|
"event_show_players" : "yes",
|
||||||
"event_show_extras" : "no",
|
|
||||||
"event_show_total" : "yes",
|
"event_show_total" : "yes",
|
||||||
"sportspress_event_performance_mode" : "values",
|
"sportspress_event_performance_mode" : "values",
|
||||||
"event_show_player_numbers" : "yes",
|
"event_show_player_numbers" : "yes",
|
||||||
|
|||||||
@@ -7,9 +7,9 @@
|
|||||||
"Forward"
|
"Forward"
|
||||||
],
|
],
|
||||||
"outcomes": [
|
"outcomes": [
|
||||||
{ "name" : "Win", "condition" : ">" },
|
{ "name" : "Win", "condition" : ">", "description" : "Wins" },
|
||||||
{ "name" : "Draw", "condition" : "=" },
|
{ "name" : "Draw", "condition" : "=", "description" : "Draws" },
|
||||||
{ "name" : "Loss", "condition" : "<" }
|
{ "name" : "Loss", "condition" : "<", "description" : "Losses" }
|
||||||
],
|
],
|
||||||
"results": [
|
"results": [
|
||||||
{ "name" : "1st Half", "description" : "1st half goals" },
|
{ "name" : "1st Half", "description" : "1st half goals" },
|
||||||
@@ -17,10 +17,10 @@
|
|||||||
{ "name" : "Goals", "description" : "Total goals", "primary" : 1 }
|
{ "name" : "Goals", "description" : "Total goals", "primary" : 1 }
|
||||||
],
|
],
|
||||||
"performance": [
|
"performance": [
|
||||||
"Goals",
|
{ "name" : "Goals", "description" : "Goals", "icon" : "soccerball", "color" : "#222222" },
|
||||||
"Assists",
|
{ "name" : "Assists", "description" : "Assists", "icon" : "shoe", "color" : "#222222" },
|
||||||
"Yellow Cards",
|
{ "name" : "Yellow Cards", "description" : "Yellow cards", "icon" : "card", "color" : "#f4d014" },
|
||||||
"Red Cards"
|
{ "name" : "Red Cards", "description" : "Red cards", "icon" : "card", "color" : "#d4000f" }
|
||||||
],
|
],
|
||||||
"columns": [
|
"columns": [
|
||||||
{ "name" : "P", "equation" : "$eventsplayed", "description" : "Matches played" },
|
{ "name" : "P", "equation" : "$eventsplayed", "description" : "Matches played" },
|
||||||
@@ -33,13 +33,23 @@
|
|||||||
{ "name" : "Pts", "equation" : "$win * 3 + $draw", "priority" : 1, "description" : "Team points" }
|
{ "name" : "Pts", "equation" : "$win * 3 + $draw", "priority" : 1, "description" : "Team points" }
|
||||||
],
|
],
|
||||||
"metrics": [
|
"metrics": [
|
||||||
"Height",
|
{ "name" : "Height", "description" : "Player height" },
|
||||||
"Weight"
|
{ "name" : "Weight", "description" : "Player weight" }
|
||||||
],
|
],
|
||||||
"statistics": [
|
"statistics": [
|
||||||
{ "name" : "Appearances", "equation" : "$eventsplayed", "description" : "Matches played" },
|
{ "name" : "Appearances", "equation" : "$eventsplayed", "description" : "Matches played" },
|
||||||
{ "name" : "Win Ratio", "equation" : "$win / $eventsplayed * 100", "precision" : 2 },
|
{ "name" : "Win Ratio", "equation" : "$win / $eventsplayed * 100", "precision" : 2, "description" : "Win ratio" },
|
||||||
{ "name" : "Draw Ratio", "equation" : "$draw / $eventsplayed * 100", "precision" : 2 },
|
{ "name" : "Draw Ratio", "equation" : "$draw / $eventsplayed * 100", "precision" : 2, "description" : "Draw ratio" },
|
||||||
{ "name" : "Loss Ratio", "equation" : "$loss / $eventsplayed * 100", "precision" : 2 }
|
{ "name" : "Loss Ratio", "equation" : "$loss / $eventsplayed * 100", "precision" : 2, "description" : "Loss ratio" }
|
||||||
]
|
],
|
||||||
|
"options": {
|
||||||
|
"event_teams" : "2",
|
||||||
|
"event_show_players" : "yes",
|
||||||
|
"event_show_total" : "no",
|
||||||
|
"sportspress_event_performance_mode" : "icons",
|
||||||
|
"event_show_player_numbers" : "yes",
|
||||||
|
"event_split_players_by_team" : "yes",
|
||||||
|
"event_split_players_by_position" : "no",
|
||||||
|
"sportspress_event_total_performance" : "all"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
@@ -77,7 +77,6 @@
|
|||||||
"event_teams" : "2",
|
"event_teams" : "2",
|
||||||
"sportspress_event_hide_child_positions" : "yes",
|
"sportspress_event_hide_child_positions" : "yes",
|
||||||
"event_show_players" : "yes",
|
"event_show_players" : "yes",
|
||||||
"event_show_extras" : "no",
|
|
||||||
"event_show_total" : "yes",
|
"event_show_total" : "yes",
|
||||||
"sportspress_event_results_reverse_teams" : "yes",
|
"sportspress_event_results_reverse_teams" : "yes",
|
||||||
"sportspress_event_performance_mode" : "values",
|
"sportspress_event_performance_mode" : "values",
|
||||||
|
|||||||
Reference in New Issue
Block a user