
Halls of Mist: super-simple skills?
Collapse
X
-
Since all my skills are percentage based, I could use this system with them all. At the moment I think most items just add bonuses straight to the skill score. (For many skills it doesn't matter if the success percentage grows to 100%. For some skills I even have effects for scores beyond 100%. Weapon skills beyond 100% start increasing your critical chance.)Leave a comment:
-
Yes, it's really the damage fractions that are multiplicative.
The percentage system makes intuitive sense (after some thought), but it is less elegant and messier to code than the 1/(n+1).Leave a comment:
-
I agree that this is an excellent way for resistances and some other things to work. It is a bit tricky to work out what to call it. Multiplicatively kind of implies that two 50% resistances make a 25% resistance. The method you use comes up fairly often in systems, for example it is similar to taking the probability of a disjunction, to De Morgan's laws in logic, to harmonic means, and to resistance in parallel. I like to call it 'co-multiplicative', since you take the complements of the numbers, multiply these and take the complement of the result. Effectively it is that the complement is multiplicative (in this case 'vulnerability').
Note that for all my praise of it, Sil uses a system where you take 1/(n+1) of the damage with n sources of resistance, as this fit my purposes a little better. I think that your system is more general and often better.Leave a comment:
-
Sleeping monsters do not move or attack. Instead, on each of their turns, nearby sleeping monsters force you to make a Stealth check. If the noise you make disturbs them enough (the threshold depending on the monster) they wake up.
Your character and all her Stealth equipment have their own Stealth skill, and they all roll their skill checks separately. You avoid disturbing a monster if any of the checks succeed.Leave a comment:
-
They stack multiplicatively. It's best to think of it as how much damage gets through:
If you have a 40% RFire item and a 30% RFire item, you take 60% damage because of the first, then 70% of that because of the second. So in total you take 0.6x0.7 = 0.42 or 42% damage, and overall you have 58% RFire.Leave a comment:
-
They stack multiplicatively. It's best to think of it as how much damage gets through:
If you have a 40% RFire item and a 30% RFire item, you take 60% damage because of the first, then 70% of that because of the second. So in total you take 0.6x0.7 = 0.42 or 42% damage, and overall you have 58% RFire.
In the case of Stealth, I guess you would think of each item reducing the noise you make by a fixed percentage, which kind of works; I actually think your idea makes a lot of intuitive sense, though.Leave a comment:
-
Would this be an elegant implementation of Stealth?
Sleeping monsters do not move or attack. Instead, on each of their turns, nearby sleeping monsters force you to make a Stealth check. If the noise you make disturbs them enough (the threshold depending on the monster) they wake up.
Your character and all her Stealth equipment have their own Stealth skill, and they all roll their skill checks separately. You avoid disturbing a monster if any of the checks succeed.Leave a comment:
-
If you mean that boots have their own Stealth percentage, and both boots and their owner make their own skill check, yes, that would work. "More turns between Stealth checks" is just another way of saying that. Which one would be easier to understand?Leave a comment:
-
Wouldn't it be easier to just use percentages like FA does with resists?Leave a comment:
-
I figured out how to handle Stealth items in a world with Stealth capped at 90%.
They don't give bonuses to your Stealth score. Instead, each stealth equipment "increases the average time between Stealth checks by one turn".
This is handled as another random chance to pass Stealth checks without actually rolling Stealth. 1/2 chance for one item, 2/3 for two, 3/4 for three, and so on.
This would make stealth items about as good for warriors with Stealth 20% and Rogues with Stealth 90% -- much like in the original system. Stockpiling stealth items would work without breaking the game.Leave a comment:
-
Before reading Derakon's really helpful posts I did some very quick and dirty numbers myself. Seems I was quite close to reality.
Code:Stealth skill Stealth chance 20 99% 17 98% 13 95% 10 90% 9 87.5% 7 80% 4 60% 2 36% 0 0%
Equipment that increase Stealth are the only problem. There would either need to be a cap at 90% or some sort of diminishing returns. It would not be necessary to have any Stealth equipment -- we don't have any Saving Throw or Magic Device equipment, either.
At the moment Grippli Rogue has Stealth 12 (about 93%) at level 50. Grippli Ranger has stealth 7 (80%) at any level. A cap at 90% would not break anything too badly.Leave a comment:
-
-
I suffered through the forum's search feature to find the post where I described how stealth works and another one where I described the values of various stealth levels.Leave a comment:
Leave a comment: