Added warlords stats card

This commit is contained in:
2025-09-18 20:08:49 +02:00
parent 045cbe54ca
commit 0e08c1ab1d
7 changed files with 254 additions and 3 deletions

View File

@@ -26,6 +26,7 @@ import SmashHerosStats from "./_stats/smashheros/smashheros"
import SpeedUHCStats from "./_stats/speeduhc/speeduhc"
import TNTGamesStats from "./_stats/tnt-games/tnt-games"
import UHCStats from "./_stats/uhc/uhc"
import WarlordsStats from "./_stats/warlords/warlords"
import WoolGamesStats from "./_stats/woolgames/woolgames"
export function PlayerPageLoadText() {
@@ -96,7 +97,8 @@ export function PlayerStats(
"blitz": <BlitzStats stats={stats.Blitz} />,
"arcade": <ArcadeStats stats={stats.Arcade} />,
"speeduhc": <SpeedUHCStats stats={stats.SpeedUHC} uhcCoins={stats.UHC?.coins} />,
"smashheros": <SmashHerosStats stats={stats.SmashHeros} />
"smashheros": <SmashHerosStats stats={stats.SmashHeros} />,
"warlords": <WarlordsStats stats={stats.Warlords} />
} as const
const defaultOrder = Object.keys(statsComponents)