refactor league module (wip)
This commit is contained in:
35
adapters/bootstrap/PointsSystems.ts
Normal file
35
adapters/bootstrap/PointsSystems.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
export const pointsSystems: Record<string, Record<number, number>> = {
|
||||
'f1-2024': {
|
||||
1: 25,
|
||||
2: 18,
|
||||
3: 15,
|
||||
4: 12,
|
||||
5: 10,
|
||||
6: 8,
|
||||
7: 6,
|
||||
8: 4,
|
||||
9: 2,
|
||||
10: 1,
|
||||
},
|
||||
indycar: {
|
||||
1: 50,
|
||||
2: 40,
|
||||
3: 35,
|
||||
4: 32,
|
||||
5: 30,
|
||||
6: 28,
|
||||
7: 26,
|
||||
8: 24,
|
||||
9: 22,
|
||||
10: 20,
|
||||
11: 19,
|
||||
12: 18,
|
||||
13: 17,
|
||||
14: 16,
|
||||
15: 15,
|
||||
},
|
||||
};
|
||||
|
||||
export function getPointsSystems(): Record<string, Record<number, number>> {
|
||||
return { ...pointsSystems };
|
||||
}
|
||||
Reference in New Issue
Block a user