A downloadable game for Windows, macOS, and Linux


You enter the final room of the dungeon, quite confident that all the power you have accumulated in your descent will lead you to victory. The amulet of Yendor is right there, standing on an altar on the opposite side of the room. You start to move carefully, wary of any trap that could trigger...

ExpelledRL is my first 7DRL entry. The game was ranked 3rd by the judges! It explores the possibility to impersonate any creature in a roguelike game. It has the typical features of the genre with permadeath, high difficulty and randomly generated dungeons. This game was built in 7 days, starting from the tcod python tutorial.

Features:

  • Possession spell: you can be any monster in the game
  • 8-level dungeon with a variety of environments and challenges
  • 13 different endings
  • Keyboard only controls
  • Story and tutorial
  • 8x8 graphics from Oryx design labs

How to play:

Press 't' at anytime for a help page (abusively called tutorial). Use the arrows, keypad or vi keys (hjkl/yubn) to move. Use 'a' to cast a spell, 'p' to possess a monster while alone with it, and '>' to descend stairs to the next level. Make sure you read the messages as they indicate important stuff.


Change log:

2019-05-28

  • Disabled UPX exe compressor in windows version as it generated a false alarm in anti virus detection

2019-04-20

  • Ported to my own micropython-based engine (to be released in the future)
  • Fixed keyboard handling inconsistencies
  • Fixed turns being spent while not action is performed

2019-03-15 (full changelog in sources):

  • Fixed a lot of bugs
  • Polished gameplay a bit

2019-03-11:

  • Fix missing font
  • Use platform-independent path components
  • Added precompiled linux and windows executables generated with pyinstaller

2019-03-10:

  • Initial release (crashes because of missing font)

Developers:

StatusReleased
PlatformsWindows, macOS, Linux
Rating
Rated 5.0 out of 5 stars
(1 total ratings)
Authorbenob
GenreRole Playing
Made withGIMP, SDL
TagsSeven Day Roguelike Challenge, Perma Death, Roguelike
Average sessionAbout a half-hour
LanguagesEnglish
InputsKeyboard

Download

Download
expelled-rl-windows-20190528.zip 859 kB
Download
expelled-rl-osx-20190420.zip 309 kB
Download
expelled-rl-linux-20190420.zip 359 kB
Download
expelled-rl-src-20190420.zip 34 kB

Install instructions

Windows:

Download and unzip the file for windows. Make sure SDL2.dll is in the same directory as the exe when you run it.

Mac:

Install SDL2 (https://www.libsdl.org/download-2.0.php).
Download and unzip expelled-rl for OSX. Make the bin file executable and run it.

Linux:

Install SDL2. It's distribution dependent, on Ubuntu, it might be:

sudo apt install libsdl2-dev libsdl2-2.0-0

Download and unzip expelled-rl for linux. Make the bin file executable and run it.

Source code:

The source code requires the pyrogue game engine (https://github.com/benob/pyrogue). Install development libraries for SDL2. Download and unzip the expelled-rl source code zip.

git clone --recurse-submodules https://github.com/benob/pyrogue
cd pyrogue
mkdir build
cd build
cmake .. -DCMAKE_BUILD_TYPE=Release
make -j 4
./pyrogue /path/to/expelled-rl/game.py

Comments

Log in with itch.io to leave a comment.

i feel like freeze and confusion are instant death sentences...

Can't get this to run on Mac. I dragged SDL2 into library/frameworks, unzipped the file, changed .bin to .exe and it won't run.

is there a walkthrough/general guide for this game?

If you have never played a roguelike, the objective is to find stairs to the next level until level 10 where you have to beat the boss.

Each level has a different set of challenges / enemies but the general strategy as in most roguelikes is to be cautious and not engage with enemies. Be sure to use the possession power when you health is low, or to avoid floor hazards. You can wait possession cool down while in safe areas and make sure to try the special power of monsters.

To beat the boss, the easiest strategy is to possess a wizard and summon mobs as meat shield. Then leave the boss's field of vision to not be caught in fire. There is a different ending depending on which monster you possess while beating the boss.

Big spoiler: your original body is sitting in the middle of the room, invisible unless next to it. So lure out the boss and possess it for a fun ride.

also the cooldown seems to be longer every time you use possession, is this exactly how it works? is the ability limited?

it's just based on the type of monster your possess. It is not very effective since you can wait it out. But I have been thinking of tying it to exploration or kills.

(1 edit)

Hmmm... Norton is reporting the .exe file (expelled-rl-windows-20190420.exe) as a virus when I try and extract the .zip file. Any reason it would do that? I mean, I'd like to think it's a false positive, but at the same time I'd like to be sure before I allow it. It's being reported as a Trojan.Gen.9. Thanks

The exe is concatenated with a zip containing the game. Maybe that's what triggers the anti-virus. I'll investigate...

It seems that the UPX exe compressor is what generates the false alarm. I re-uploaded a version not compressed with UPX. Let me know if you have any trouble with it.