Author Topic: Roguelike With Psionics?  (Read 12890 times)

XavierIII

  • Newcomer
  • Posts: 2
  • Karma: +0/-0
    • View Profile
    • Email
Roguelike With Psionics?
« on: November 01, 2014, 07:52:33 PM »
I am currently looking for a roguelike with psionics. I enjoy ADOM and TOME4 ,but am in the mood for a bit more variety. I have also tried SOTS: The Pit, but didn't really enjoy it too much. Thanks you in advance for the help!

Bear

  • Rogueliker
  • ***
  • Posts: 308
  • Karma: +0/-0
    • View Profile
Re: Roguelike With Psionics?
« Reply #1 on: November 01, 2014, 10:28:57 PM »
In many roguelikes, there are effects called "Magic." 

Every developer of such a game decides how "Magic" in that game ought to work.  And whatever mechanics someone proposes for "Magic" would work equally well for "Psionics."  From a game designer's point of view, there's really no distinction between them beyond whatever distinction you choose to make.

In effect you're asking us here whether there's an example out there that suits your idea of the game mechanics you'd choose to call "Psionics" but you haven't told us what set of game mechanics those are.  Whatever game you find an example of those mechanics in, that game is more likely to call it "Magic" than to call it "Psionics" but that's fairly irrelevant.

The serious question then, is what set of game mechanics are you talking about?  Is this just a re-branding of "spellcasting" into "psychic disciplines" so you can fit the same game mechanics into a different genre, (like "The Force" in Star  Wars)? Do you want to have both Magic and Psionics as things that work by completely different rules and offer a very different set of gameplay decisions for players to make?  If so what are the differences? 

Or are you going with the seriously old-skool original definition of "Psionics" as high-tech electronic devices that are worn or implanted and do things, or control other devices, based on directly sensing the neural firings inside the user's head -- like the Predator's shoulder gun that can tell where he's looking and when he wants it to fire based on a direct neural interface? 


XavierIII

  • Newcomer
  • Posts: 2
  • Karma: +0/-0
    • View Profile
    • Email
Re: Roguelike With Psionics?
« Reply #2 on: November 02, 2014, 01:07:43 AM »
What I am asking for is magic set in a soft science fiction setting rather than standard high fantasy that most games are set in. I kindof thought that was what most people think of when they hear psionics. Sorry if my original post was unclear. I prefer my magic systems to be consistantly useable in combat, not just reserved for bosses and other difficult mobs.
« Last Edit: November 02, 2014, 01:09:35 AM by XavierIII »

getter77

  • Protector of the Temple
  • Global Moderator
  • Rogueliker
  • *****
  • Posts: 4957
  • Karma: +4/-1
    • View Profile
Re: Roguelike With Psionics?
« Reply #3 on: November 02, 2014, 02:04:52 AM »
PRIME perhaps.
Brian Emre Jeffears
Aspiring Designer/Programmer/Composer
In Training

Bear

  • Rogueliker
  • ***
  • Posts: 308
  • Karma: +0/-0
    • View Profile
Re: Roguelike With Psionics?
« Reply #4 on: November 02, 2014, 03:36:19 AM »
Sorry if I was being dense.  For me game design (mechanics) questions are entirely separate from setting, etc, so I was wondering (in terms of game mechanics, because I'm a wingnut who doesn't really see anything else) what you meant. 

So are you mainly looking for good flavor text? Art assets?

Samildanach

  • 7DRL Reviewer
  • Rogueliker
  • *
  • Posts: 453
  • Karma: +1/-0
    • View Profile
    • The Indie Ocean
Re: Roguelike With Psionics?
« Reply #5 on: November 02, 2014, 10:04:29 AM »
PRIME perhaps.
Yes, PRIME seems like the logical suggestion. Caves of Qud perhaps. Maybe AlphaMan if you can get hold of it.

mushroom patch

  • Rogueliker
  • ***
  • Posts: 554
  • Karma: +0/-0
    • View Profile
Re: Roguelike With Psionics?
« Reply #6 on: November 02, 2014, 12:03:36 PM »
Actually, you can write your own roguelike game with "psionics" pretty easily. All you have to do is take a roguelike game you like, maybe nethack, and do a search and replace on words in the source code related to "magic" and "spells." It may help avoid trouble if you can restrict the find and replace to string literals, but if you don't know what that is, it'll probably work anyway.

Now if you really need a sci-fi setting, which isn't at all what "psionics" suggests or implies, you've got more work ahead of you. The first thing you need to do is fix item and monster names. For example:

Code: [Select]
"saber" --> "light saber"
"bow" --> "raygun"
"X arrows" --> "energy module with X charges"
"orc" --> "space orc"

And of course "magic wand" --> "psionic wand."

Now just alter the intro text, if any, to reflect your new, immersive science fiction game setting. Happy hacking!
« Last Edit: November 02, 2014, 12:05:45 PM by mushroom patch »

Paul Jeffries

  • 7DRL Reviewer
  • Rogueliker
  • *
  • Posts: 257
  • Karma: +1/-0
    • View Profile
    • Vitruality.com
Re: Roguelike With Psionics?
« Reply #7 on: November 02, 2014, 04:12:37 PM »
« Last Edit: November 02, 2014, 04:14:33 PM by Paul Jeffries »