Added arena brawl stats card

This commit is contained in:
2025-09-20 19:57:05 +02:00
parent a874f586fb
commit eaf0e02d28
10 changed files with 249 additions and 4 deletions

View File

@@ -16,6 +16,7 @@ import ArcadeStats from "./_stats/arcade/arcade"
import BedwarsStats from "./_stats/bedwars/bedwars"
import BlitzStats from "./_stats/blitz/blitz"
import BuildBattleStats from "./_stats/build-battle/build-battle"
import ClassicStats from "./_stats/classic/classic"
import CopsAndCrimsStats from "./_stats/copsandcrims/copsandcrims"
import DuelsStats from "./_stats/duels/duels"
import MegaWallsStats from "./_stats/megawalls/megawalls"
@@ -98,7 +99,8 @@ export function PlayerStats(
"arcade": <ArcadeStats stats={stats.Arcade} />,
"speeduhc": <SpeedUHCStats stats={stats.SpeedUHC} uhcCoins={stats.UHC?.coins} />,
"smashheros": <SmashHerosStats stats={stats.SmashHeros} />,
"warlords": <WarlordsStats stats={stats.Warlords} />
"warlords": <WarlordsStats stats={stats.Warlords} />,
"classic": <ClassicStats arenaBrawlStats={stats.ArenaBrawl} />
} as const
const defaultOrder = Object.keys(statsComponents)