Python 2 Text Game Skills – 2

Haunted House – 2

6. Adding More Movement:
The following will guide you through the development of a simple game. Now to add two more features to make your game more interesting.
* The game must keep going until the player enters quit or goes into a room and dies.
* If a player tries to move outside the map or in an empty direction, then the game prints You can’t go followed by that direction.
Now you have to handle all possible directions for every room. Previously you only had to code for the starting room, the foyer.
This will require a chain of if… ELSE IF statements.

EG – in structured English
ELSE IF room is ‘bedroom’
IF direction is ‘right
set room to ‘foyer’
ELSE
print message “You can’t go there.”

For you to do:
Redo your map as a larger size
Create a new table for all room movements and actions in your MAP