generated from mwc/project_game
Game proposal
This commit is contained in:
parent
f5455ad1ed
commit
6acd59b370
|
@ -0,0 +1,7 @@
|
|||
# This file is automatically @generated by Poetry 1.8.3 and should not be changed by hand.
|
||||
package = []
|
||||
|
||||
[metadata]
|
||||
lock-version = "2.0"
|
||||
python-versions = "^3.10"
|
||||
content-hash = "53f2eabc9c26446fbcc00d348c47878e118afc2054778c3c803a0a8028af27d9"
|
|
@ -0,0 +1,37 @@
|
|||
# Game Proposal
|
||||
|
||||
## Team
|
||||
|
||||
I will work alone on this project.
|
||||
|
||||
## Game Overview
|
||||
|
||||
The goal of this game is to make a sprite that moves around the screen collecting "snacks." Each time the hungry man collects a snack, he will get bigger. There will also be penalty markers that if the hungry man runs into he gets smaller. The game will end (or possibly level up) when the hungry man gets to a certain size.
|
||||
|
||||
I was originally thinking of doing the snake game, until I saw in the video that it was one of the games provided. I then decided to try this idea because it is something similar, but will have some new twists and challenges.
|
||||
|
||||
The player will interact with the game using the arrow keys. After exploring the retro lab, I think I will have a better idea on how this mechanic works. I will also need a way for the snacks to move around the screen after one is picked up. I may also have the snacks move around randomly in set (or random) time intervals to add more challenge to the game. I think I will incorporate the same idea with the penalty markers.
|
||||
|
||||
The game will have a set frame with borders where the man can move in all directions around the screen. I expect the height of the game screen to be about twice the width of the game screen. I would also like to add some color to the snacks, man, and/or penalty markers.
|
||||
|
||||
I think the game will be compelling because it is similar to other sprite navigation games. I may need to incorporate additional levels or a high score option to make it even more fun.
|
||||
|
||||
## Core Mechanics
|
||||
|
||||
One core mechanic of this game is the movement of the sprite. The arrow keys will be used to help the sprite navigate around the screen.
|
||||
|
||||
Another core mechanic is the position of the snacks (and penalty markers). I will start with the snacks. I intend to position them randomly and for a set amount of time. Later, I could further refine the position and then adjust the time as the game becomes more difficult.
|
||||
|
||||
Another core mechanic is that win the sprite picks up a snack, he will need to increase in size. I think this core mechanic can be broken down by first setting a score function (number of snacks) that increases by 1 every time a snack is picked up and then later create another function to have the size of the man increase based on the score. Penalty markers would negatively impact the score.
|
||||
|
||||
## Milestone
|
||||
|
||||
I think a good milestone in this project would be to establish the sprite that can move around the screen and increase the score when he picks up a snack, and decrease the score when he picks up a penalty marker. I intend to get much further than this, but I think this is a good first step.
|
||||
|
||||
## Challenges
|
||||
|
||||
I haven't had a chance to work through the retro lab yet (I did watch the video), but wanted to get this proposal in first. I think some of the easy movements will become more obvious to me after the retro lab. I think one challenge may be making the hungry man larger and the subsequent navigation around the screen. If this functionality does not become too challenging, I may try to add different types of snacks for the hungry man or different types of penalties.
|
||||
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue