As you begin working on a console game the basic requirements of any good console game will allow users to:
- Move about a set of rooms
- Get a description of the room they are in
- Get Help - Shows a list of all available commands
- Use Items
- Give Up
- Restart
To help you out with some of these basic features will notice that you already have some interfaces that have been built. These interfaces are designed to help ensure you implement the basic requirements of a console game.
To satisfy the interfaces you will need to ensure that your classes implement all of the features of the provided interfaces... You cannot remove anything from any of the interfaces.
Requirements:
10 points
: The Basic Features of the game work2 Go <Direction>
Moves the player from room to room2 Use <ItemName>
Uses an item in a room or from your inventory2 Take <ItemName>
Places an item into the player inventory and removes it from the room2 Help
Shows a list of commands and actions2 Quit
Quits the Game
We have provided a basic story and map if you are not creative or simply don't want to spend your time thinking of a story to play your game. Following the provided story is not required however creating some sort of experience is.
Your Game must implement the following features
Requirements:
10 points
: Game Needs1
: You have at least 4 rooms1
: You have at least 1 usable item1
: You have at least 1 item that can be taken1
: You are rewarded points for your efforts1
: You can lose the game due to a bad decision2
: You have at least 1 room that changes based on an item use1
: When the player enters a room they get the room description1
: The Player can see the items in their inventory1
: The Player can win the game
Requirements:
- Typing
go north
all of the time gets laborious accomadate the following shortcuts without having to use the word go- n, s, e, w,
- Try changing the console color or adding some beeps for dramatic effect
- Clear the console when appropriate
- The user should know when its their turn try formatting the users input with something like this everytime its the users turn to type
- What do you do: __________________ // <- Their Answer on the same line
When You are finished please slack the url for your github repo to your mentor in a DM. Be sure you add this project to your gh-pages if you want credit for it.