Hi
I'm coding a rogue like game for Odyssey2. It's heavily based on Pedit 5, the first computer RPG ever, I recommend you to watch this video about the game, if you're not familiar :
https://www.youtube.com/watch?v=GjiIc94vJWQAnd this video if you're still intrigued about Plato Computer System :
https://www.youtube.com/watch?v=5k_QQV9sj4IWell, since the game is far from finished, I'll not post the rom for now.
The objective is walk inside the dungeon collecting treasure chests which will provide gold, magic scrolls and weapon upgrade.
Naturally the dungeon is full of monsters from different levels, and you should use the scrolls carefully to survive as long as possible.
Pedit 5 uses a very complex magic system, which I couldn't port to O2, but uses a very limited combat system, which I have expanded as "turns" just like any other turn based rpg.
My game the magic system is less complex, but the combat system is more elaborated than Pedit 5.
There are 3 types of magic scrolls :
Fireball (combat Spell) - Healing (restores part of HP) and Cast Light, which is a defensive spell.
During combat, you choose attack (sword or magic) and try to hit the enemy. After that the enemy try to hit you.
Because it is a Rogue-like RPG, the game is procedural, so the monsters and treasure chest positions are totally new every game.
The maze is fixed, but it is huge and is a PERFECTLY recreation of the original Pedit5 Dungeon.
This is what I have to say for now, I will post more updates as the game coding progresses.