Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/enygma/text-etp-s04e03
Text adventure for: Escape This Podcast (S04E03)
https://github.com/enygma/text-etp-s04e03
escape-game escape-room python text-adventure text-adventure-game
Last synced: about 1 month ago
JSON representation
Text adventure for: Escape This Podcast (S04E03)
- Host: GitHub
- URL: https://github.com/enygma/text-etp-s04e03
- Owner: enygma
- Created: 2019-03-02T12:59:44.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-02T22:08:37.000Z (over 2 years ago)
- Last Synced: 2024-07-30T20:52:56.932Z (4 months ago)
- Topics: escape-game, escape-room, python, text-adventure, text-adventure-game
- Language: Python
- Size: 37.1 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Text Adventure - Descent of the Cullodens
## Chapter 3 - I’d Kill You If I Had My Gun!This game makes use of the [Adventurelib](https://adventurelib.readthedocs.io/en/stable/) Python library.
Source: [PDF](https://drive.google.com/file/d/1flH5tXNHh-ks1RYCTHMwxx8EgXRroGiM/view)
Link: [Escape This Podcast (S04E03)](http://www.escapethispodcast.com/e/descent-of-the-cullodens-chapter-3-id-kill-you-if-i-had-my-gun-ft-triple-jeopardy-lee-amy-and-alistair/)
## To play
```
python3 ./run.py
```> **NOTE:** If it's your first time running it, you'll need to install the `adventurelib` and `colored` packages: `pip install adventurelib colored`
## For debugging
You can also run in debug mode to get actual error messages when something goes wrong:
```
python3 ./run.py --debug
```## Using Docker
This project also includes a Dockerfile. Use run it using Docker, use the following commands:
```
docker build -t escape-room .
docker run -it escape-room
```