Unity Scavenger game based on Unity tutorial 2D Roguelike.
Authors: Greg Blodgett and Diego Pina
Class: Game Development
Instuctor: Dr. McCown
Due Date: 11/20/2020
This is a game that requires the player to escape a dungeon before they starve to death (Their food points go to zero). There are various objects the player can pick up:
- Food: Regain food points
- Soda: Regain food points
- Key: Allows you to pass through a locked wall
- Sword: Doubles the players damage
There are zombies in the maze that will attack the player and take away their food points. The player can attack back, however, and they get points for every zombie they kill.
-
Your game should use a single multi-screen map that you've created in a text file. The map file should reside in your project's Resources directory. The map should have at least 6 different parts. The player can enter each part through an opening in the wall, but bad guys are not allowed through openings. The game ends when the player reaches the exit.
-
The menu screen should display the goal of the game, the game's name, and the developers' names. A start button should start the game.
-
The player's goal is to reach a single exit, but you can decide how that happens. For example, maybe the player must collect a special key that unlocks the exit.
-
There should be some way to lose the game. For example, the player could die when they run out of food.
-
In addition to tracking the player's food, the game should have some type of point system. For example, killing a zombie could add points, or collecting some item type could add points.
-
The game should have an additional zombie that is much more aggressive and dangerous than the current zombies. The zombie should look different than the other zombies. You may duplicate the existing sprite sheet and just change the color of zombie to create the sprites needed for the third zombie.
-
The game should implement some method from the textbook's "Seven Methods of Indirect Guidance" from chapter 12 to help the player find the exit. The game does not need to save scores.
Greg: (50%)
- Reading text file and constructing board
- Creating Key attribute and Locked wall
- Enabled killing zombies
- Point system
Diege: (50%)
- Main menu screen
- Third Zombie
- Indirect guidance (Doorways turn a different color after going through, which helps direct players to parts of the maze they haven't explored)