Files
gridpilot.gg/adapters/bootstrap/PointsSystems.ts

35 lines
499 B
TypeScript

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 };
}