From 8c9b131c00e4252f9ab4db20742c5d0df1ebb563 Mon Sep 17 00:00:00 2001 From: Chris Parsons <438676+chrisparsons83@users.noreply.github.com> Date: Fri, 20 Feb 2026 10:00:35 -0800 Subject: [PATCH] Update scoring system and add Counter-Strike to special scoring (#7) * Update how-to-play scoring rules to match standard scoring - Update placement points: 1st 100, 2nd 70, 3rd-4th 45, 5th-8th 20 - Add Counter-Strike to the special majors scoring section alongside Golf & Tennis - Add qualifying points breakdown (8/5/3/2/1) per major tournament https://claude.ai/code/session_01JUAqVZgo7M7XRBLzpeaWpH * Fix scoring to show all 8 individual placements correctly Display each placement (1st-8th) with its own point value rather than grouping/averaging: 100, 70, 50, 40, 25, 25, 15, 15 https://claude.ai/code/session_01JUAqVZgo7M7XRBLzpeaWpH --------- Co-authored-by: Claude --- app/routes/how-to-play.tsx | 74 ++++++++++++++++++++++++++------------ 1 file changed, 51 insertions(+), 23 deletions(-) diff --git a/app/routes/how-to-play.tsx b/app/routes/how-to-play.tsx index b792e37..f4b3450 100644 --- a/app/routes/how-to-play.tsx +++ b/app/routes/how-to-play.tsx @@ -50,22 +50,40 @@ export default function HowToPlay() { Points are awarded based on final standings. The better your pick finishes, the more points you earn:

-
-
- 🥇 1st Place - 80 points -
-
- 🥈 2nd Place - 50 points -
-
- 🥉 3rd-4th Place - 30 points -
-
- 5th-8th Place - 20 points +
+
+
+ 🥇 1st Place + 100 pts +
+
+ 🥈 2nd Place + 70 pts +
+
+ 🥉 3rd Place + 50 pts +
+
+ 4th Place + 40 pts +
+
+ 5th Place + 25 pts +
+
+ 6th Place + 25 pts +
+
+ 7th Place + 15 pts +
+
+ 8th Place + 15 pts +

@@ -76,27 +94,37 @@ export default function HowToPlay() {

- ⛳ Special Scoring for Golf & Tennis + ⛳ Special Scoring for Golf, Tennis & Counter-Strike

- Golf and tennis work a bit differently since they have multiple - major tournaments: + Golf, tennis, and Counter-Strike work a bit differently since they + each have multiple major tournaments throughout the year:

  • - Players earn qualifying points at each major tournament throughout - the year + Players/teams earn qualifying points at each major tournament + throughout the year
  • After all majors are complete, we add up everyone's qualifying points
  • - The top 8 players by total qualifying points then earn the regular - scoring points (80, 50, 30, 20) + The top 8 by total qualifying points then earn the regular scoring + points (100, 70, 50, 40, 25, 25, 15, 15)
  • This rewards consistency across all the major tournaments!
+
+

Qualifying points per major:

+
+ 1st Place8 QP + 2nd Place5 QP + 3rd Place3 QP + 4th Place2 QP + 5th Place1 QP +
+