Skip to content

Latest commit

 

History

History
22 lines (20 loc) · 994 Bytes

README.md

File metadata and controls

22 lines (20 loc) · 994 Bytes

adventure_game

a simpler version of an old-fashioned text-based adventure game using Python programming language.

Adventure Game Project for Udacity's Intro to Programming Nanodegree Programs.

Game Description

  • The game gives players a description of what's happening, and then asks them to make a choice.
  • Something different happens depending on the choice the player made.
  • The game also includes some random factors, so that it's a little different each time.
  • The game has conditions for winning and losing.
  • When the game is over, it asks if the player wants to play again.

Project Instructions

  1. Print descriptions of what's happening for the player
  2. Pausing between printing descriptions
  3. Give the player some choices
  4. Make sure the player gives a valid input
  5. Add functions and refactor your code
  6. Use randomness in your game
  7. Create win and lose conditions
  8. Check if the player wants to play again
  9. Check your style with pycodestyle
  10. Test Your Code