Eu sinceramente concordo com Pureferret sobre AnyDice para calcular as probabilidades de sucesso. Um TLDR está na parte inferior.
Obrigado novamente ao criador do AnyDice por dar uma função de amostra para o oWoD. No entanto, existe uma falha na função: Não é contabilizado um rolamento 10, como a linha se N < 10 inclui apenas até 9. Há duas maneiras de corrigir isso:
- Substitua se N < 10 {resultado: 1} com se N < = 10 {resultado: 1} , ou se você é um pouco OCD como eu ...
- Substitua se N < 10 {resultado: 1} com se N > = TN {resultado: 1}
Abaixo está a função como eu uso principalmente - link . Para os interessados, acrescentei alguns comentários sobre o que está acontecendo dentro da função e observei lugares onde as mudanças podem ser feitas para necessidades diferentes.
function: owod N:n tn TN:n {
if N = 1 { result: -1 } Defines what happens on a roll of 1, a potential botch.
if N < TN { result: 0 } Defines what happens on a failure, a roll over 1 but less
than the target/difficulty number.
if N >= TN { result: 1 } Defines what happens on a success, a roll equal to the
target/difficulty number or higher.
result: 1 + [owod d10 tn TN]
}
OWOD: [owod d10 tn 6] Assigns the target/difficulty number, a 6 in this instance.
Change as needed.
loop N over {1..10} { Defines the range of the dice pool, here it is 1d10 to
10d10. Change as needed. The range can be replaced with
a single number. Examples of each:
1. loop N over {3..7} - a dice pool range of 3d10 to 7d10
2. loop N over {8} - a single dice pool of 8d10
output [highest of [lowest of NdOWOD and 10] and -4] named "[N]d"
}
Defines the range of rolls, here it is a botch of 4 '1's
with no successes (-4), all the way up to 10 successes.
Change as needed. I recommend keeping the number of
successes the same as the max dice pool used in the line
above, as this will display the probability of the entire
dice pool having succeeded. In 'Graph' view, this
represents the horizontal axis.
Eu uso as opções Table e Graph View, como se dá detalhes (tabela) e um oferece uma visão mais simplificada (gráfico). Uma grande variedade de pools de dados é certamente mais fácil de ver no Graph . Como Yandros mencionou, a opção Pelo menos Dados é o que exibirá a porcentagem de chance de sucesso (s).
TLDR; Sua melhor aposta para calcular as probabilidades de sucesso é usar o AnyDice, mas há um erro na função de amostra. Substitua se N < 10 {resultado: 1} com se N < = 10 {resultado: 1} . Além disso, as últimas três linhas da função podem ser adaptadas para preferências específicas.