A downloadable game for Windows and Linux

"Rogue Robs Trains" is simple roguelike made in 7 days for 7DRL2019 game jam.


Game is made with use of RAWIG roguelike template (https://github.com/VedVid/RAWIG), and uses BearLibTerminal (display-focused library made by Cfyz) and Deferral-Square font (made by Brian Bruggeman).

In "Rogue Robs Trains" player is bandit that boarded train transport of gold. You must kill everyone and stop train to loot chests.

The core of the game is ranged combat mechanics. The most important factor is distance from target, as every weapon has its own *effective range*.
Additionally, player has to remember that some weapons needs to be cocked before every shot, and sometimes reloading takes much more time than expected...

StatusReleased
PlatformsWindows, Linux
Release date Mar 08, 2019
Rating
Rated 5.0 out of 5 stars
(2 total ratings)
AuthorVedor
GenreAdventure
Made withREXPaint
Tags2D, Seven Day Roguelike Challenge, 7drl2019, Roguelike, roguelike-like
Code licenseBSD 2-clause 'Simplified' License
Average sessionA few minutes
LanguagesEnglish
InputsKeyboard
Linksgithub

Download

Download
Rogue Robs Trains - 0.0.4_post-campo - windows 64-bit 6 MB
Download
Rogue Robs Trains - 0.0.4_post-campo - windows 32-bit 4 MB
Download
Rogue Robs Trains - 0.0.4_post-campo - linux 64-bit 1 MB
Download
Rogue Robs Trains - 0.0.4_post-campo - linux 32-bit 1 MB
Download
Rogue Robs Trains - 7drl_0.0.1 - windows 64-bit 6 MB
Download
Rogue Robs Trains - 7drl_0.0.1 - windows 32-bit 4 MB
Download
Rogue Robs Trains - 7drl_0.0.1 - linux 64-bit 1 MB
Download
Rogue Robs Trains - 7drl_0.0.1 - linux 32-bit 1 MB

Install instructions

Windows - download, unpack and run.

Linux - for 7drl version you may need to, additionally, move BearLibTerminal.so to your libs directory; for post-campo releases, use run.sh to start game.

Development log

Comments

Log in with itch.io to leave a comment.

(+1)

I have just seen a video of this nice game on the channel of ToneHack.

(+1)

This is such an awesome project! It reminds me of DoomRL with the quick gameplay. It's fun to explore the weapons and try to adjust tactics. Well done, I'm excited to look at your other work!

Thanks! :) Comparison with DoomRL is huge praise!

> I'm excited to look at your other work!

It's my best game so far. But I'm going to use RRT's mechanics in a bit larger project - I hope it goes well :)

Deleted 4 years ago

Hello! I'm gland you liked it, and thank you very much for feedback :)  

Because of time pressure, I forgot to include info about some keybindings in readme or in-game - I will fix it in post-campo release. To quit game during run, you need to use <SHIFT>+Q. To save a game - <SHIFT> + S. To close high scores screen, player needs to press <SPACE> or <ENTER> or <ESC>.

At first, I'd like to obtain more info about bugs. What version were you playing? What is your OS? How did you try to close window? Are you sure that you turned animations on? It's off by default as it doesn't fit architecture *that* well.

Generation of levels is kind of long story... Carriages are not always the same - I'm using template to determine their shape, and details are randomly chosen from prefabs. I think it would work well for some sort of semi-open-world game (I thought about "clean village from bandits" trope as well), but because carriages are rather small and symmetric, it didn't work out. All implemented (semi)procedurally generated elements serves fluff and flavor mostly. I thought about using "real" procedural generation, but I didn't have enough time. But it's on my todo list :)

More guns, and bigger differencies between guns, are also todo :) but not very high in priority. My initial goal wasn't about progress. I just wanted provide variety to gameplay - as enemies follows the same set of rules as player, bandit with Winchester rifle is more dangerous than one with Springfield. I don't know if I'm going to implement real progression, thought - due theme, this game has very limited scope. Yet, I like Old West enough to try implement somethign bigger in future...

First, I have to tweak RAWIG template. It worked well as 7drl architecture, but it was first time when I used it for real development, and I learnt what its flaws are. Performance of AI algorithm must be improved...

Once again, thanks for feedback and playing :)

Deleted 4 years ago
(1 edit)

I can't reproduce multiplying score bug, nor see the reason in code. Which screen was affected? With flavour victory/lose text, or with high scores list?

I added quitting game by "X" button, but it's going to be some kind of panic button (close immediately, save game) for now - until I'll implement submenu for handling this case.

Actually, there is no progression - except starting and final levels, the order of carriages is random.

And introducing progression through weapons is not likely. Don't get me wrong, I see the point. But it can't be done easily due to basic game mechanics. Enemies have only 1 HP, so I can't just buff weapon damage. There are other properties (accuracy, effective range), but I can tinker with them only a little - five shots off target in a row would be opposite of fun ;) ...on the other hand, maybe I could add new mechanics, like sawn-off shotgun with cone area-of-fire... 

Deleted 4 years ago
(+1)

>The bug appeared on the screen with victory text

Ah, I see it now! OK, it will be fixed in next release. Thanks for help!

>Is the number of enemies in each carriage randomised as well?

Yes, partially. Number of enemies is random within a range specified for each car. So, there are easier and harder levels, but some variety is provided ;)