Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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)

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
```