Added card for cops and crims

This commit is contained in:
2025-09-08 14:53:32 +02:00
parent 82636ade5c
commit eb58dde03f
6 changed files with 128 additions and 2 deletions

View File

@@ -0,0 +1,41 @@
export const MODES = [
{ id: "", name: "Defusal" },
{ id: "deathmatch", name: "Team Deathmatch" },
{ id: "gungame", name: "Gun Game" }
] as const
export const GUNS = [
{ id: "knife", name: "Knife" },
{ id: "pistol", name: "Pistol" },
{ id: "handgun", name: "Handgun" },
{ id: "magnum", name: "Magnum" },
{ id: "sniper", name: "Sniper" },
{ id: "bullpup", name: "Bullpup" },
{ id: "smg", name: "SMG" },
{ id: "rifle", name: "Rifle" },
{ id: "carbine", name: "Carbine" },
{ id: "scoped_rifle", name: "Scoped Rifle" },
{ id: "shotgun", name: "Shotgun" },
{ id: "auto_shotgun", name: "Auto Shotgun" }
] as const
export const SCORE = [
{ score: 0, color: "gray" },
{ score: 2500, color: "white" },
{ score: 5000, color: "yellow" },
{ score: 20000, color: "gold" },
{ score: 50000, color: "dark-aqua" },
{ score: 100000, color: "red" }
] as const
export const UPGRADES = [
{ id: "damage_increase", name: "Damage Increase" },
{ id: "recoil_reduction", name: "Recoil Reduction" },
{ id: "charge_bonus", name: "Target Acquire" }, // For sniper only
{ id: "reload_speed_reduction", name: "Reload Time Reduction" },
{ id: "cost_reduction", name: "Cost Reduction" },
{ id: "attack_delay", name: "Attack Delay" } // For knife only
] as const
export const UPGRADELEVELS = [
{ level: 0, color: "gray" },
{ level: 3, color: "yellow" },
{ level: 6, color: "red" },
{ level: 9, color: "dark-red" }
] as const