-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathappsettings.json
37 lines (30 loc) · 909 Bytes
/
appsettings.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Note : Do provide values in given format only for smooth gaming experience
{
//No balls / wide not considered
"BallsPerOver": 6,
//Overs to be played or left
"OversLimit": 4,
//wickets remaining e.g 10 if 11 players playing
"WicketsLeft": 3,
//Runs to win for batting team
"RunsToWin": 40,
//Bowling team name
"BowlingTeam": "Nibiru",
//Batting team name
"BattingTeam": "Remus",
//Batting team players name stating with striker and non-striker
"Players": [
{ "Name": "Pravin" },
{ "Name": "Irfan" },
{ "Name": "Jalindar" },
{ "Name": "Vaishali" }
],
//Players Probability in Percentage
//Format in Runs : 0, 1, 2, 3, 4, 5, 6, W
"PlayersProbability": {
"Pravin": [ 5, 30, 25, 10, 15, 1, 9, 5 ],
"Irfan": [ 10, 40, 20, 5, 10, 1, 4, 10 ],
"Jalindar": [ 20, 30, 15, 5, 5, 1, 4, 20 ],
"Vaishali": [ 30, 25, 5, 0, 5, 1, 4, 30 ]
}
}