A puzzler game I'm working on
I'm building a small puzzle game ( thats probably been done a million times before,but hell,whatever)I'm using python and the pycap framework (http://www.farbs.org/pycap.html) to get a prototype up and running .Which I then plan to port to XNA and C#.
The premise:
The player is represented with switches that need to be activated by shockwaves from placed bombs .Some switches require simultaneous shockwaves to strike it at the same time.(requiring the player to place the bombs at specific locations on the map).
Expanded ideas:
-walls that deflect shock waves.
-walls that slow down shock waves.
-walls the speed up shockwaves.
-walls that delete shockwaves.
-limited number of bombs per puzzle.
-timing mechanism to set of explosions.
-bombs that are set off by other bomb's shockwaves.
Sound good? Please If anyone has any suggestions then please post here .I havent even gotten out of the "ideas" phase.(just started building the basics for the game).I'm trying not to use game maker(it would be easier)because I want to expand my toolbox of available game building tools for future.(hence sticking with python as it's quite easy to use)
The premise:
The player is represented with switches that need to be activated by shockwaves from placed bombs .Some switches require simultaneous shockwaves to strike it at the same time.(requiring the player to place the bombs at specific locations on the map).
Expanded ideas:
-walls that deflect shock waves.
-walls that slow down shock waves.
-walls the speed up shockwaves.
-walls that delete shockwaves.
-limited number of bombs per puzzle.
-timing mechanism to set of explosions.
-bombs that are set off by other bomb's shockwaves.
Sound good? Please If anyone has any suggestions then please post here .I havent even gotten out of the "ideas" phase.(just started building the basics for the game).I'm trying not to use game maker(it would be easier)because I want to expand my toolbox of available game building tools for future.(hence sticking with python as it's quite easy to use)
Comments
It is also possible for waves to cancel each-other out. So you could have a puzzle where two switches must be hit, but one must not. So the player must use cancellation for that.
---
One thing I have to ask is how does the player interact with the world. WASD to move LMB to place bombs, and RMB to detonate is the first thing that comes to mind. I think an outline of player interaction could help with the feedback.
DO IT!