Difference between revisions of "Weighted"
m (category, typo) |
|||
(3 intermediate revisions by 2 users not shown) | |||
Line 1: | Line 1: | ||
− | Weighted refers to the way spells/items/abilities select targets. Any spell/item/ability(with the notable exception of one unique that avoids targeting the top stack) that is described as | + | Weighted refers to the way spells/items/abilities select targets. Any spell/item/ability (with the notable exception of one unique that avoids targeting the top stack) that is described as targeting a random stack(s) will prefer to target the largest stack(s) by NP instead (usually but not always the top stack(s)). |
[[Category: Spell_attributes]] | [[Category: Spell_attributes]] | ||
+ | |||
+ | -- | ||
+ | |||
+ | |||
+ | See also: | ||
+ | http://wiki.the-reincarnation.org/index.php/Random_stack | ||
+ | |||
+ | The game code chooses a stack by giving the top stack a 50% chance of being selected, and then halving the chances after that until you are out of stacks. | ||
+ | |||
+ | |||
+ | {| border="1" style="text-align:center" | ||
+ | |+ "Random" stack selection | ||
+ | ! Stack # | ||
+ | ! Chance of selection | ||
+ | |- | ||
+ | | 1 (aka top) | ||
+ | | 50% | ||
+ | |- | ||
+ | | 2 | ||
+ | | 25% | ||
+ | |- | ||
+ | | 3 | ||
+ | | 12.5% | ||
+ | |- | ||
+ | | 4 | ||
+ | | 6.25% | ||
+ | |- | ||
+ | | 5 | ||
+ | | 3.12% | ||
+ | |- | ||
+ | | 6 | ||
+ | | 1.56% | ||
+ | |- | ||
+ | | 7 | ||
+ | | 0.78% | ||
+ | |- | ||
+ | | 8 | ||
+ | | 0.39% | ||
+ | |- | ||
+ | | 9 | ||
+ | | 0.19% | ||
+ | |- | ||
+ | | 10 | ||
+ | | 0.01% | ||
+ | |} |
Latest revision as of 15:44, 7 July 2015
Weighted refers to the way spells/items/abilities select targets. Any spell/item/ability (with the notable exception of one unique that avoids targeting the top stack) that is described as targeting a random stack(s) will prefer to target the largest stack(s) by NP instead (usually but not always the top stack(s)).
--
See also:
http://wiki.the-reincarnation.org/index.php/Random_stack
The game code chooses a stack by giving the top stack a 50% chance of being selected, and then halving the chances after that until you are out of stacks.
Stack # | Chance of selection |
---|---|
1 (aka top) | 50% |
2 | 25% |
3 | 12.5% |
4 | 6.25% |
5 | 3.12% |
6 | 1.56% |
7 | 0.78% |
8 | 0.39% |
9 | 0.19% |
10 | 0.01% |