Showing posts with label Game DNA. Show all posts
Showing posts with label Game DNA. Show all posts

Wednesday, January 13, 2010

From Rules to Goals

Last time we looked at a couple of abstract rules, a game design at its most primitive. This time we will look at how those rules were built upon to create Absorb.

As a refresher, here are the rules we set up in the initial post:
1. In the game universe there exists several objects.
2. Each object has a color.
3. Objects that don't share the same color are destroyed if they touch.
4. Objects that do share the same color are combined if they touch.

To these we added five more concrete rules and modifications:
5. An Orb is an Object that moves in to the game universe at ever decreasing timings.
6. An Orb's velocity can be interacted with by an outside force.
7. A Gate is a special Object that is stationary and will absorb Orbs of the same color that pass through it.
8. If a Gate is destroyed, it can be rebuilt by combining 5 individual Orbs of that Gate's color.
9. If all Gates in the game universe are destroyed, the game is over.

With these rules in mind I felt like we had a pretty good starting point. Our Game DNA felt pretty solidified. Just thinking about how this would work felt pretty interesting. So we started implementing it.

Naturally as we implemented Absorb and could see it running on the screen, some questions arose that were answered with even more detailed rules. More importantly at this time we came to a great realization: This game is at least somewhat fun, but what is the point?

In our case we entertained the thought of this being a "get the high score"-style arcade game. Boooring!

We liked the idea of having levels to progress through. I also really liked the idea of having a very consistent game world, where the levels were more about seeing what could be accomplished given the set rules. Much like how the rules started building, we came up with several styles of levels. Here's an example of a level along with a sneak peak of Absorb.

(I apologize in advance for the video quality)




No questions today, but as always would love to hear your thoughts! If you like the post make sure to share it with your friends.

Bookmark and Share

Saturday, January 9, 2010

Transforming The Rules

Rules are the most basic of building blocks a game has. Rules are to a game what DNA is to a person. They tell the game how to behave in every basic scenario. Rules create the underlying character of the game. It doesn't take many rules before the game starts taking on a life of its own, and as such rules are a great place to start your game's design.

But also like people, DNA is only part of the equation. It takes a good upbringing to turn interesting rules into a great game. This is one of the game designer's most crucial tasks.

Depending on how the basic rules are nurtured you could end up with:
-Checkers instead of Chess
-Golf instead of Croquet
-Tetris instead of Space Invaders

I find this process to be extremely interesting and inspiring.

The game I'm currently working on was born from a few basic/abstract rules:
1. In the game universe there exists several objects.
2. Each object has a color.
3. Objects that don't share the same color are destroyed if they touch.
4. Objects that do share the same color are combined if they touch.

-What game would you dream up given these extremely basic/abstract rules?
-How many rules and goals would you need to add to turn this into something more interesting and challenging?

I'll be sharing some of my own results in more upcoming posts. In the meantime I'd love to hear your thoughts!

Bookmark and Share