Finished pit general stats
This commit is contained in:
@@ -53,6 +53,7 @@ export default function PitStats({ stats }: { stats: NonNullStats["Pit"] }) {
|
||||
<AccordionContent>
|
||||
<Separator className="my-4" />
|
||||
<PitGeneralStats stats={stats} />
|
||||
<Separator className="my-4" />
|
||||
</AccordionContent>
|
||||
</CardContent>
|
||||
</Card>
|
||||
|
||||
@@ -73,6 +73,30 @@ export default function PitGeneralStats({ stats }: { stats: NonNullable<NonNullS
|
||||
<BasicStat title="Launcher Launches: " value={formatNumber(stats.launched_by_launchers)} />
|
||||
</div>
|
||||
<div className="flex-1">
|
||||
<BasicStat title="Golden Apples Eaten: " value={formatNumber(stats.gapple_eaten)} />
|
||||
<BasicStat title="Golden Head Eaten: " value={formatNumber(stats.ghead_eaten)} />
|
||||
<BasicStat title="Soups Drunk: " value={formatNumber(stats.soups_drank)} />
|
||||
<BasicStat title="Rage Potatoes: " value={formatNumber(stats.rage_potatoes_eaten)} />
|
||||
<BasicStat title="Fishing Rods Thrown: " value={formatNumber(stats.fishing_rod_launched)} />
|
||||
<BasicStat title="Lava Buckets Used: " value={formatNumber(stats.lava_bucket_emptied)} />
|
||||
<BasicStat title="Diamond Items Purchased: " value={formatNumber(stats.diamond_items_purchased)} />
|
||||
<BasicStat title="Blocks Placed: " value={formatNumber(stats.blocks_placed)} />
|
||||
<BasicStat title="Blocks Broken: " value={formatNumber(stats.blocks_broken)} />
|
||||
<p>
|
||||
<br />
|
||||
</p>
|
||||
<BasicStat title="Tier 1 Mystics Enchanted: " value={formatNumber(stats.enchanted_tier1)} />
|
||||
<BasicStat title="Tier 2 Mystics Enchanted: " value={formatNumber(stats.enchanted_tier2)} />
|
||||
<BasicStat title="Tier 3 Mystics Enchanted: " value={formatNumber(stats.enchanted_tier3)} />
|
||||
<BasicStat title="Dark Pants Created: " value={formatNumber(stats.dark_pants_crated)} />
|
||||
<p>
|
||||
<br />
|
||||
</p>
|
||||
<BasicStat title="Wheat Farmed: " value={formatNumber(stats.wheat_farmed)} />
|
||||
<BasicStat title="Fished Items: " value={formatNumber(stats.fished_anything)} />
|
||||
<BasicStat title="Fished Fish: " value={formatNumber(stats.fishes_fished)} />
|
||||
<BasicStat title="King's Quest Completions: " value={formatNumber(stats.king_quest_completion)} />
|
||||
<BasicStat title="Sewer Treasures Found: " value={formatNumber(stats.sewer_treasures_found)} />
|
||||
</div>
|
||||
</div>
|
||||
)
|
||||
|
||||
Reference in New Issue
Block a user