.com.unity Forums
  The Official e-Store of Shrapnel Games

This Month's Specials

Raging Tiger- Save $9.00
The Star and the Crescent- Save $9.00

   







Go Back   .com.unity Forums > Illwinter Game Design > Dominions 2: The Ascension Wars

Reply
 
Thread Tools Display Modes
  #1  
Old March 19th, 2005, 01:29 PM
The_Tauren13's Avatar

The_Tauren13 The_Tauren13 is offline
First Lieutenant
 
Join Date: Jul 2004
Location: Albuquerque, NM
Posts: 605
Thanks: 0
Thanked 0 Times in 0 Posts
The_Tauren13 is on a distinguished road
Default Re: Random Picks and Modding...

OK, scratch that old and busted formula; that was just something basic to start off on. Here's the new hotness:
sqrt(((HP*(10.0+Prot)*Def*MR)/1000.0)*((Str*Att)/10.0))*((3.0+Move)/5.0)*((40.0+AP)/50.0)*(9.0/(6.0+Enc))*((Mor^log10(7))/7.0)

Comments:
HP, Prot, Def, MR, Str, and Att are all wieghted the same now.
The square root does not encompass Move, AP, Enc, or Mor.
log10(7) = 0.84509804001425683071221625859264 (about), meaning that about 22 Mor is worth twice as much as 10 Mor (instead of just 20 Mor being worth twice 10). I chose to use a logarithm with base 10 so that, for unit with 10 Mor, the equation (Mor^log10(7))/7 will equal 1, so a unit with 10 Mor will be 'average'.
The basic idea is: sqrt(defensiveness*offensiveness)*other. I decided upon this because in a simplistic system where the units only have 2 stats, HP and Damage, an ideal cost formula is sqrt(HP*Damage).
I counted MR as a defensive capability, but it could be brought out of the square root to be weighted more heavily.
I didn't really know what to do with Enc, so I just threw it in so that a unit with 0 Enc is worth 50% more than the same unit but with 3 ('normal') Enc, and the same unit but with 12 Enc is worth half as much.
__________________
Every time you download music, God kills a kitten.
Reply With Quote
  #2  
Old March 19th, 2005, 01:55 PM
The_Tauren13's Avatar

The_Tauren13 The_Tauren13 is offline
First Lieutenant
 
Join Date: Jul 2004
Location: Albuquerque, NM
Posts: 605
Thanks: 0
Thanked 0 Times in 0 Posts
The_Tauren13 is on a distinguished road
Default Re: Random Picks and Modding...

I have a n00b modding question: How much is the 4th magic school worth? Ive been counting it the same as the 3rd school (10, 30, 50) so far... so that F2E2D1?1 costs 183.75.

Also, a few questions about your costs:
How much did poison resistance end up being worth? 10, same as elemental resistance? Less?
What about being an animal? I would think that does more harm than good, right?
50% increase for sacred troops, but not commanders, right?
Is the capital only reduction 10% or 20%?

One more question: What's with the 'Death Poison'? How much damage does it do?
__________________
Every time you download music, God kills a kitten.
Reply With Quote
  #3  
Old March 19th, 2005, 04:57 PM
Saber Cherry's Avatar

Saber Cherry Saber Cherry is offline
Major General
 
Join Date: Oct 2003
Location: Crystal Tokyo
Posts: 2,453
Thanks: 0
Thanked 0 Times in 0 Posts
Saber Cherry is on a distinguished road
Default Re: Random Picks and Modding...

Death Poison: 35 damage IIRC. Animal is a negative feature.

As for morale value... it's sort of an s-curve with the steepest part around 9, with asymptotes at maybe 5 and 16. I can't think of an s-curve equation offhand.

At any rate, morale 14 is perhaps twice as valuable as morale 10... and above that it doesn't matter much. From my observations.
__________________
Cherry
Reply With Quote
  #4  
Old March 19th, 2005, 06:26 PM
The_Tauren13's Avatar

The_Tauren13 The_Tauren13 is offline
First Lieutenant
 
Join Date: Jul 2004
Location: Albuquerque, NM
Posts: 605
Thanks: 0
Thanked 0 Times in 0 Posts
The_Tauren13 is on a distinguished road
Default Re: Random Picks and Modding...

Quote:
Saber Cherry said:
As for morale value... it's sort of an s-curve with the steepest part around 9, with asymptotes at maybe 5 and 16. I can't think of an s-curve equation offhand.

At any rate, morale 14 is perhaps twice as valuable as morale 10... and above that it doesn't matter much. From my observations.
Hmm... so perhaps I took the wrong approach.
How about: (((x/10)-1)^(1/3))+1
Code:

Morale Cost
6 0.26
7 0.33
8 0.42
9 0.54
10 1.00
11 1.46
12 1.58
13 1.67
14 1.74
15 1.79
16 1.84
17 1.89
18 1.93

__________________
Every time you download music, God kills a kitten.
Reply With Quote
  #5  
Old March 20th, 2005, 03:30 AM

Evil Dave Evil Dave is offline
Corporal
 
Join Date: Jan 2004
Location: Wilmington, Delaware, USA
Posts: 191
Thanks: 1
Thanked 13 Times in 2 Posts
Evil Dave is on a distinguished road
Default Re: Random Picks and Modding...

Quote:
Saber Cherry said:
As for morale value... it's sort of an s-curve with the steepest part around 9, with asymptotes at maybe 5 and 16. I can't think of an s-curve equation offhand.

You can generate s-curves (gamma curves) by integrating normal or polynomial distributions. In this case, integrating the distribution of 5 three-sided dice will get you almost the distribution you want: range of 5-15, with the steepest slope at 10.
__________________
No plan survives contact with the enemy.
--Helmut von Moltke

Have too may pretender files to keep track of? Use catgod to view them.
Reply With Quote
  #6  
Old March 20th, 2005, 07:20 AM
Saber Cherry's Avatar

Saber Cherry Saber Cherry is offline
Major General
 
Join Date: Oct 2003
Location: Crystal Tokyo
Posts: 2,453
Thanks: 0
Thanked 0 Times in 0 Posts
Saber Cherry is on a distinguished road
Default Re: Random Picks and Modding...

Quote:
Evil Dave said:
Quote:
Saber Cherry said:
As for morale value... it's sort of an s-curve with the steepest part around 9, with asymptotes at maybe 5 and 16. I can't think of an s-curve equation offhand.

You can generate s-curves (gamma curves) by integrating normal or polynomial distributions. In this case, integrating the distribution of 5 three-sided dice will get you almost the distribution you want: range of 5-15, with the steepest slope at 10.
Thanks Actually, I play Dominions to get away from math (especially calculus) but for some reason it keeps popping up...
__________________
Cherry
Reply With Quote
  #7  
Old March 20th, 2005, 02:51 PM

Evil Dave Evil Dave is offline
Corporal
 
Join Date: Jan 2004
Location: Wilmington, Delaware, USA
Posts: 191
Thanks: 1
Thanked 13 Times in 2 Posts
Evil Dave is on a distinguished road
Default Re: Random Picks and Modding...

Quote:
Saber Cherry said:
Actually, I play Dominions to get away from math (especially calculus) but for some reason it keeps popping up...
Really? Wow. From reading this thread and the others on modding and balance, I'd concluded:

1) You and the other good/knowledgable players really liked math.

2) The reason I'm not very good at Dom2 is that I wasn't using enuf math, and was worrying too much about silly notions like reducing the other side's ability to fight.
__________________
No plan survives contact with the enemy.
--Helmut von Moltke

Have too may pretender files to keep track of? Use catgod to view them.
Reply With Quote
  #8  
Old March 20th, 2005, 06:17 PM
Saber Cherry's Avatar

Saber Cherry Saber Cherry is offline
Major General
 
Join Date: Oct 2003
Location: Crystal Tokyo
Posts: 2,453
Thanks: 0
Thanked 0 Times in 0 Posts
Saber Cherry is on a distinguished road
Default Re: Random Picks and Modding...

Quote:
Evil Dave said:
Really? Wow. From reading this thread and the others on modding and balance, I'd concluded:

1) You and the other good/knowledgable players really liked math.

2) The reason I'm not very good at Dom2 is that I wasn't using enuf math, and was worrying too much about silly notions like reducing the other side's ability to fight.

Hmm... maybe I was kidding a little. I actually like math, until people start talking about eigenvalues and integrating high-degree trig functions
__________________
Cherry
Reply With Quote
  #9  
Old March 21st, 2005, 03:50 PM

Scott Hebert Scott Hebert is offline
Second Lieutenant
 
Join Date: Feb 2004
Location: Titusville, FL
Posts: 450
Thanks: 0
Thanked 0 Times in 0 Posts
Scott Hebert is on a distinguished road
Default Re: Random Picks and Modding...

Quote:
Evil Dave said:
Really? Wow. From reading this thread and the others on modding and balance, I'd concluded:

1) You and the other good/knowledgable players really liked math.
I love math, and I love to generate statistics. However, I am neither very good or very knowledgeable about this game.

Quote:
2) The reason I'm not very good at Dom2 is that I wasn't using enuf math, and was worrying too much about silly notions like reducing the other side's ability to fight.
*chuckles* Nah. I'm just trying to find something to occupy my mind, and I came up with this.
__________________
Scott Hebert
Gaming Aficionado
Modding Beginner
Reply With Quote
Reply

Bookmarks


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is On

Forum Jump


All times are GMT -4. The time now is 05:18 AM.


Powered by vBulletin® Version 3.8.1
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
Copyright ©1999 - 2025, Shrapnel Games, Inc. - All Rights Reserved.