Topic:   Stat Progression Table   (Read 10536 times)


0 Members and 1 Guest are viewing this topic.

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Stat Progression Table
« on: March 09, 2010, 03:49:27 AM »
I always had trouble balancing stats in my RPGs, but I wrote a fairly good base table for Tides of Fáden (which I never used in the end) so I thought I'd post it here for anyone to use:

Level12345678910
HP20283644526068768492
Random Damage45678910111213
Bonus Damage234567891011
Damage Result3-64-85-106-127-148-169-1810-2011-2212-24


EDIT:

Man, the table command is horrible. :-/ Here's slightly easier to read screenshot:
« Last Edit: March 09, 2010, 04:02:06 AM by Silverwind »
I survived the spammage of 2007

Gan


  • Administrator

  • ^ This guy is amazing.

  • *****


  • Posts: 4411
Re: Stat Progression Table
« Reply #1 on: March 09, 2010, 06:14:55 AM »
This is gonna come in handy. :)


-Gan

Tireas Dragon


  • GMG Extraordinaire

  • ***


  • Posts: 1626

  • Trying to recover from my shattered screen.
Re: Stat Progression Table
« Reply #2 on: March 09, 2010, 09:25:15 AM »
This will help immensely.
I must be dreaming (wake up me wake up) How could this have happened. Tireas' cry when he found his computer fallen over in his chair with it's screen shattered.

EqwanoX


  • Administrator

  • GMG Extraordinaire

  • *****


  • Posts: 1180
Re: Stat Progression Table
« Reply #3 on: March 09, 2010, 10:09:09 AM »
how do you balance enemy stats?

the table is pretty simple, just add 8 to hp and 1 to both the random and bonus damage each level

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Stat Progression Table
« Reply #4 on: March 09, 2010, 10:10:54 AM »
Ah, I'm glad to hear that. I wasn't sure how useful it would be. Have you guys ever drawn up a stat table before?

I'm actually in love with the new percentile based table I wrote for the Roguesoft RPGE; its so versatile and easy to work out in your head. This one's still good though.
« Last Edit: March 09, 2010, 10:14:44 AM by Silverwind »
I survived the spammage of 2007

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Stat Progression Table
« Reply #5 on: March 09, 2010, 10:51:58 AM »
Quote
how do you balance enemy stats?

the table is pretty simple, just add 8 to hp and 1 to both the random and bonus damage each level
Well, it's trickier to calculate with non percentile based tables, but it all comes down to a "master variable" which everything else is relative to. My master variable is usually HP, so once I know the value of it at "Level X" I can work out how much damage attacks deal at that level and so on. Here's my current mockup of the Moon Fable STP for example:



At level 1 the player starts with 100 HP (because 100 is the easiest number to work with), so assuming an enemy of the same level also has 100 HP I can work out how much average damage the player deals by dividing the value of HP times the amount of attacks on average I want the player to land before the enemy is defeated. In the case of a level 1 enemy, I want it to take 3 attacks on average to defeat it, so I divide 100 by 3 (roughly) and get 33 which I mark up to 35 to gradually increase the length of battles as the game progresses.

Next I decide how much HP the player gains per level. I want HP to increase by a fifth of the base value (again roughly, it's actually 0.5.2) so I divide 100 by 5 and get 20 which I once again mark up to 22 to assist the battle length progression rate.

Finally, if I want the player to be able to take on an average of 5 enemies of equal level before depleting their HP, I simply give the player 5 times as many HP as an enemy of equal level. Or, you could divide the enemies' average  damage by 5.

And that's how I do it. How do you do it?
« Last Edit: March 09, 2010, 10:53:22 AM by Silverwind »
I survived the spammage of 2007

Tireas Dragon


  • GMG Extraordinaire

  • ***


  • Posts: 1626

  • Trying to recover from my shattered screen.
Re: Stat Progression Table
« Reply #6 on: March 09, 2010, 11:24:11 AM »
I'll see how well this works.
I must be dreaming (wake up me wake up) How could this have happened. Tireas' cry when he found his computer fallen over in his chair with it's screen shattered.

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Stat Progression Table
« Reply #7 on: March 09, 2010, 11:33:04 AM »
Quote
I'll see how well this works.
What's your method?
I survived the spammage of 2007

Tireas Dragon


  • GMG Extraordinaire

  • ***


  • Posts: 1626

  • Trying to recover from my shattered screen.
Re: Stat Progression Table
« Reply #8 on: March 09, 2010, 01:14:37 PM »
Picking Random numbers out of the sky and hoping its works out well. Do you have a system for missing, armor class, and damage reduction?
I must be dreaming (wake up me wake up) How could this have happened. Tireas' cry when he found his computer fallen over in his chair with it's screen shattered.

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Stat Progression Table
« Reply #9 on: March 09, 2010, 01:34:50 PM »
Yes, but I'll have to post it tonight as I'm heading out the door in a sec. I don't use damage reduction though, I use a percentile based to-hit system similar to D&D's "THAC0" system.
I survived the spammage of 2007

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Stat Progression Table
« Reply #10 on: March 09, 2010, 05:20:55 PM »
Ok, here's how I handle "to hit" rolls in the Roguesoft RPGE (note that all stats are percentile based). First off you designate the base chance of an attack hitting:

baseHitChance = 50

Here I've set it to 50%. Then you create a "hit window" which will determine the likeliness of an attack hitting:

hitWindow = baseHitChance
hitWindow = hitWindow + playerAccuracy
hitWindow = hitWindow - enemyEvasion


Assuming playerAccuracy equals 20 and enemyEvasion equals 10, the hit window is now 60%. Next you set the minimum and maximum size of the hit window:

IF hitWindow > 95 THEN hitWindow = 95
IF hitWindow < 5 THEN hitWindow = 5

Here I've set the maximum accuracy of an attack roll to 95% and the minimum accuracy to 5%. (i.e. 1 in 20 rolls) You could of course set the values to 100 and 0 if you wanted attacks of sufficient difference to always/never hit. Finally, to deduce wether or not an attack hits, you roll a percentile dice:

hitRoll = RANDOM 100
IF hitRoll =< hitWindow THEN
(Attack hits)

And there you have it my fine feathered friendly French fellow fiend from France, a simple yet powerful percentile based battle engine. I've only been playing around with it whilst developing the Roguesoft RPGE, but I'm already in love with it. I'll never go back to non percentile calculation, its too much hassle.
« Last Edit: March 09, 2010, 05:52:25 PM by Silverwind »
I survived the spammage of 2007

Charlo


  • GMG-er

  • **


  • Posts: 451
Re: Stat Progression Table
« Reply #11 on: March 09, 2010, 05:26:56 PM »
I've never thought about doing a table like this for one of my games.  Like Tireas, I just pull numbers out of the air and hope for balance.  Thanks for posting this Silver.   :)

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Stat Progression Table
« Reply #12 on: March 09, 2010, 05:45:22 PM »
Quote
I've never thought about doing a table like this for one of my games.  Like Tireas, I just pull numbers out of the air and hope for balance.  Thanks for posting this Silver.   :)
You're very welcome. I'm really glad this stuff helps, as stat balancing has undisputedly been the BIGGEST problem I've faced in game design. It killed so many projects...
I survived the spammage of 2007

Tireas Dragon


  • GMG Extraordinaire

  • ***


  • Posts: 1626

  • Trying to recover from my shattered screen.
Re: Stat Progression Table
« Reply #13 on: March 10, 2010, 10:03:17 AM »
I never thought of using a percentile. That will make my games so cool. Now even high level characters can miss. MUHAHAHAHAHAHA
I must be dreaming (wake up me wake up) How could this have happened. Tireas' cry when he found his computer fallen over in his chair with it's screen shattered.

Silverwind


  • ^ This guy is amazing.

  • ****


  • Posts: 2805

  • For the glory of my maker
Re: Stat Progression Table
« Reply #14 on: March 10, 2010, 10:41:12 AM »
I know, and yet it seems so obvious having tried it. :)
I survived the spammage of 2007