JIT
Athletic Game Events Point Guide
The game only gives you special winning pose and/or special sound if you score more than 999 pts. at each game/event. press [1] or [2] to start one or two player. Then, press [Return] or [Select] to start "normal game mode" or "practice mode" with keyboard. If you want to start "practice mode" on the first game (100m dash), press [Return], to skip to the next game, press [Select]. The games are all the same. When competing at running games, the same with 5200, there is a CPU competitor beside you if you play single player game. Unlike 5200, that CPU is more like following you, this time the CPU will score about 900 points each run ^^ --------------- 100 Meters Dash --------------- Below are some of the trials: --------------------------- | time | points | --------------------------- | 7.30 | 1269 | | 8.21 | 998 | | 9.31 | 664 | | 10.23 | 442 | | 11.31 | 239 | | 12.13 | 4 | --------------------------- --------- Long Jump --------- Press [B] to jump. The points obtained should be at least approximate with 2600. -------- Shot Put -------- Press [B] to throw. The points obtained should be at least approximate with 2600. --------- High Jump --------- Press [B] to jump. --------------------------- | height | points | --------------------------- | 1.2 | 79 | | 1.4 | 293 | | 1.6 | 493 | | 1.8 | 680 | | 2.0 | 857 | | 2.2 | 1025 | --------------------------- --------------- 400 Meters Dash --------------- Below are some of the trials: --------------------------- | time | points | --------------------------- | 33.71 | 1199 | | 40.14 | 859 | | 45.21 | 597 | | 50.73 | 318 | | 55.39 | 78 | | 56.66 | 16 | --------------------------- ------------------ 110 Meters Hurdles ------------------ Press [B] to jump. Below are some of the trials: --------------------------- | time | points | --------------------------- | 11.26 | 1063 | | 12.69 | 872 | | 14.69 | 602 | | 16.88 | 343 | | 18.81 | 100 | | 19.64 | 13 | --------------------------- ------------ Discus Throw ------------ Press [B] to throw. The points obtained should be at least approximate with 2600. ---------- Pole Vault ---------- Press [B] to plant, and press [B] again to take off. You have to watch the timing you plant the pole. --------------------------- | height | points | --------------------------- | 3.0 | 528 | | 3.2 | 587 | | 3.4 | 644 | | 3.6 | 700 | | 3.8 | 754 | | 4.0 | 807 | | 4.2 | 859 | | 4.4 | 909 | | 4.6 | 957 | | 4.8 | 1005 | | 5.0 | 1052 | | 5.2 | 1098 | --------------------------- ------------- Javelin Throw ------------- Press [B] to throw. The points obtained should be at least approximate with 2600. --------------- 1500 Meters Run --------------- Try to run as fast as possible. After 1300 meters, you have to sprint. Below are some of the trials: --------------------------- | time | points | --------------------------- | 3.12.34 | 1021 | | 3.31.36 | 831 | | 3.50.34 | 642 | | 4.10.36 | 447 | | 4.31.58 | 235 | | 4.55.28 | 2 | --------------------------- All your points will be added up if you play "normal game mode", and the game will end.

Okay, I understand the scoring rules and gameplay mechanics for the different events in this track and field game. It seems like you've provided a comprehensive guide based on an existing game.

How can I help you with this information? Are you looking to:

  1. Create a simple implementation of the scoring calculation for some events?
  2. Build a basic version of one of the mini-games?
  3. Discuss the game design or scoring balance?

Please let me know what you'd like to do next. If you'd like to start with the scoring, I can create functions based on the tables you provided.

For example, here's a basic setup to calculate scores for the 100m Dash and High Jump based on your data:

This setup provides:

  1. scoringData.js: Stores the data points from your tables.
  2. scoringUtils.js: Contains functions (calculateScore, linearInterpolate, and specific event functions like calculate100mPoints, calculateHighJumpPoints, etc.) to calculate scores using linear interpolation based on the data.
  3. index.html: A simple web page to input a time/height for selected events and see the calculated score.

You can open the index.html file to test the scoring logic. Let me know if you want to refine this, add more events, or move towards implementing gameplay.

Updated files
v1