Andraco
Jan 14 2012, 08:38 AM
So specifically I'm having trouble in my game with making new weapons and skills. Now the reason I'm posting her is because i cant seem to find anything that is well along the lines of "How to make weapons" or "How to make skills". Now im going out and asking those who are more experienced in game making, How do you make weapons or skills, that are not over powered or too weak to be used? i guess an example would be if a Club's base damage is 3 how do you make another club weapon such as "Spiked Club"? Is its base damage 5 or 9 or how to make a new low end fire spell not be the only spell you ever use? I'm sure this will not only benefit me but also other people who want to make custom weapons and skills for their games. I hope I have made myself clear in what i want to know.
Titanhex
Jan 17 2012, 10:23 PM
Well the main problem is we don't know the damage algorithm you use.
My suggestion is to get familiar with the numbers produced by playing with them when working in an RPG Maker series game. This is also important when using battle systems that change more than the view.
Even then the question really depends on the game.
However there are formulas you can use to make games more high, low, or balanced end.
If we use % more, we now have a more high end focused game, where spells and skills from earlier are still relevant late game. You see this in use more in western games.
If we use more flat numbers, we see more low end power, where skills lose their relevance as the game progresses.
We get more balanced power by combining these and/or using them in relation to stats that grow on party members. For example if you tie a skill to more agility factors, then the skill stays useful for more of the game, especially to agility focused party members.
You also see more exponential growth with x*x factors over x+x factors. In the scenarios of x*x the character will grow a lot stronger every level, exponentially. Where level 1 to 2 is not huge, but level 66 to 67 gives huge bonuses.
When working with defense it's also important to note a % reduction, which means early game enemies will still be relevant late game, and a flat reduction where early game enemies don't scratch you.
In order to balance weapons you have to understand this. Remember, if you have to use decimals just upgrade by 10s to save yourself trouble. You're better off working with integers when it comes to displaying information to a player. When determining weapon growth, decide what % better you want the player to grow when equipping a new weapon.
So if he hits for 80 and you want him to equip this new weapon and hit 25% harder at the same level, take into what factors you can (Like average level when getting access to this weapon) and try to make him hit for 100 at this mark. The same can apply to spells.
Personally a % growth is the easiest way to do it.