Updated tkr stats

This commit is contained in:
2025-09-24 00:13:02 +02:00
parent c3351e8268
commit 175cd13870
6 changed files with 187 additions and 3 deletions

View File

@@ -7,3 +7,36 @@ export const QUAKECRAFTMODES = [
{ id: "", name: "Solo" },
{ id: "teams", name: "Teams" }
] as const
export const TKRATTRIBUTES = [
{ id: "ACCELERATION", name: "Acceleration" },
{ id: "BOOSTER_SPEED", name: "Booster Speed" },
{ id: "BRAKES", name: "Brakes" },
{ id: "DRIFTING_EFFICIENCY", name: "Drifting Efficiency" },
{ id: "HANDLING", name: "Handling" },
{ id: "RECOVERY", name: "Recovery" },
{ id: "START_POSITION", name: "Start Position" },
{ id: "TOP_SPEED", name: "Top Speed" },
{ id: "TRACTION", name: "Traction" }
] as const
export const TKRQUALITY = [
{ name: "Starter", color: "gray" },
{ name: "Mini", color: "gray" },
{ name: "Auxiliary", color: "green" },
{ name: "Standard", color: "green" },
{ name: "Primary", color: "green" },
{ name: "Experimental", color: "green" },
{ name: "Dynamic", color: "blue" },
{ name: "Stellar", color: "blue" },
{ name: "Kinetic", color: "blue" },
{ name: "Multi-phase", color: "blue" },
{ name: "Turbocharged", color: "light-purple" },
{ name: "Quantum", color: "light-purple" },
{ name: "Superluminal", color: "light-purple" },
{ name: "Psi", color: "light-purple" },
{ name: "Eternal", color: "dark-purple" }
] as const
export const TKRRARITY = [
{ id: "BASIC", name: "Basic" },
{ id: "SUPER", name: "Super" },
{ id: "AWESOME", name: "Awesome" }
] as const