Class 7
PopularPunch Game Concept
Concept
PopularPunch is a simple two-player Unity boxing game.
Each round, both players type a person’s name.
The game checks each name’s real-time popularity using an online data source (such as NewsAPI or Wikipedia Pageviews).
The player whose chosen name is more popular throws a stronger punch and earns more score.
After five rounds, the total score determines the winner.
Input
The game uses one type of real-world input:
- Person Name (typed by each player every round)
-
The game queries an API to get the current popularity value of that name
(e.g., number of news mentions in the last hour or pageviews in the last day).
-
This popularity value becomes the numerical basis for the punch.
-
Input = Player’s chosen person name → Real-time popularity number
Output
The game transforms the popularity value into gameplay results:
- Punch Power
- Higher popularity → stronger punch animation and sound
- Lower popularity → weaker punch
- The stronger punch deals more score.
- Round Result
- The player with the higher punch score “wins” the round.
- Final Outcome
- After 5 rounds, the game displays total scores
- The player with the higher total wins the match.
Output = Punch strength, scoring, round winner, final match result

Comments
Post a Comment