I'm not sure if this counts as small enough as a minor suggestion.
I enjoy looking at some random dude's team's history sometimes. I see their trophies but sometimes I wish I could just see a quick summary of their achievements.
Is it doable to put a summary of their achievements in the team history?
Something like this:
1x Tier 2 Tournament Champion
1x Tier 3 Semi-finalists
1x Tier 9 Runner-up
1x Tier 4 Top 1024
1x Tier 5 Top 512
1x Top Division Champion
4x Division 2 Runner-up
1x Division 3 Champion
1x Division 3 Runner-up
2x Division 4 Champion
1x National Cup Champion
3x National Cup Runner-up
1x Tournament Top 512
4x Tournament Top 2048
3x MVP Winner
2x MVP Runner-up
20x Made the Playoffs
4x Finished 5th Place
8x Finished 8th Place
4x Promoted to Division 2
3x Relegated to Division 3
Not sure if this is easily doable through aspx PL/Platform (since I main other PLs) but I think we could just collect the already existing results from Team History and summarize them accordingly.
If I can guess how to work the idea out through some pseudocode:
Achievement: {
eventType: String
total: int
}
achievements = Object/Collection //works for both depends on coding style
teamHistory = getTeamHistory()
removeExcessHistory(teamHistory) //history before user was born
foreach event in teamHistory
eventType = event.type //if there's a type
if (eventType exists in achievements) add to achievements.get(eventType).total += 1
else
-> add eventType: Achievement to achievements
-> add total = 1 to that Achievement property/item
display before Team History (Probably another box)
Other than that, we can further add other achievements too like scoring title, rebound titles, etc.. but I think that might be too much at the moment so a summary would be a banger. It's minor and I guess would be far from the general direction of the game development right now but I thought it's a nice addition
Visit my team website! https://manila-ice.netlify.app/