@page "/Cards/TotalResult/{cardId:long}"
Total Result
Total Result
@if (errorMessage is not null)
{
@errorMessage
return;
}
@if (totalResultData is null)
{
return;
}
@if (totalResultData.PlayerData.PlayedSongCount == 0)
{
No Play Record
return;
}
Player Name: @totalResultData.PlayerName
Total Score: @totalResultData.PlayerData.TotalScore
Rank: @totalResultData.PlayerData.Rank
Average Score: @totalResultData.PlayerData.AverageScore
Played Song Count: @totalResultData.PlayerData.PlayedSongCount / @totalResultData.PlayerData.TotalSongCount
Cleared Stage Count: @totalResultData.StageCountData.Cleared / @totalResultData.StageCountData.Total
No Miss Stage Count: @totalResultData.StageCountData.NoMiss / @totalResultData.StageCountData.Total
Full Chain Stage Count: @totalResultData.StageCountData.FullChain / @totalResultData.StageCountData.Total
Perfect Stage Count: @totalResultData.StageCountData.Perfect / @totalResultData.StageCountData.Total
S and Above Stage Count: @totalResultData.StageCountData.S / @totalResultData.StageCountData.Total
S+ and Above Stage Count: @totalResultData.StageCountData.Ss / @totalResultData.StageCountData.Total
S++ and Above Stage Count: @totalResultData.StageCountData.Sss / @totalResultData.StageCountData.Total