Added wool games mode stats

This commit is contained in:
2025-09-11 11:42:42 +02:00
parent 11fb9b75cd
commit c686be44e6
5 changed files with 180 additions and 10 deletions

View File

@@ -4,6 +4,7 @@ import { getWoolGamesLevel, getWoolGamesPrestige, getWoolGamesPretigeIcon } from
import { NonNullStats } from "@/lib/schema/player"
import Multicolored from "../../_components/Multicolored"
import GeneralStats from "../GeneralStats"
import { WoolGamesCaptureTheWool, WoolGamesSheepWars, WoolGamesWoolWars } from "./modes"
import WoolGamesProgress from "./progress"
import WoolGamesGeneralStats from "./stats"
@@ -40,6 +41,12 @@ export default function WoolGamesStats({ stats }: { stats: NonNullStats["WoolGam
<Separator className="my-4" />
<WoolGamesGeneralStats stats={stats} level={level} kills={kills} wins={wins} />
<Separator className="my-4" />
<WoolGamesCaptureTheWool ctw={stats.capture_the_wool} />
<Separator className="my-4" />
<WoolGamesSheepWars sw={stats.sheep_wars} />
<Separator className="my-4" />
<WoolGamesWoolWars ww={stats.wool_wars} />
<Separator className="my-4" />
</GeneralStats>
)
}