Tell me more ×
Game Development Stack Exchange is a question and answer site for professional and independent game developers. It's 100% free, no registration required.

I'm building a flash game where you have a collection of creatures. It's basically a petting game at the moment, I'd like to know what kind of mechanics I could use to battle them efficiently. I'd like to avoid to have a mechanic inspired of pokemon because I see many games being too influenced by that. I'm trying to find the best ratio simplicity:efficiency mechanic for 1 to 1 battle. Anything that could enhance my inspiration would help greatly, thanks !

share|improve this question
6  
-1 This is exceptionally open ended. Please see the FAQ, you'll find that questions like this are off topic for the site. You're welcome to ask a question about a specific problem you're having, but this is essentially asking "Give me ideas for this feature of my game". – Byte56 Apr 24 '12 at 17:01
you can ask the question in chat when you have the required reputation though :) – Byte56 Apr 24 '12 at 17:07
@Byte56 except he'll never be able to with all the downvotes. :( – Joshua Drake Apr 27 '12 at 18:11
1  
@JoshuaDrake Yeah, it's an uphill battle for some :/ – Byte56 Apr 27 '12 at 18:12

1 Answer

I'll give it the old college try. Combat generally breaks down into two types:

Both of those have two basic options. (See: Which Combat Mechanic to use? forum post.)

You can either have an attack and block mechanic where you used, say an attack/defense stat combination and generated random numbers in a range, like rolling 1D6 per point in the relevant stat for both sides and then comparing, where every defense roll higher than an attack roll cancels an attack roll.

Otherwise you can have a simple target number attack, where you only "roll" for the attacker and then compare against a target number, such as the other creature's defense. Any number higher than the target is a hit.

You could also add in shield or weapon numbers into those two methods.

The above methods can be further modified by a Parry Mechanic, or Special abilities.

You could even invent your own Custom Die Combat Mechanic.

As you can see the links above are from various systems and forums, inspiration is all around you.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.