That was weary.bluejay wrote:That sounds about right Glorelendil. How does that change if the snow troll is Weary?
Here's the code (In an extreme case of metagaming I was comparing attacking with the sword in forward stance versus making Prepared Shots with the Great Bow.)
Code: Select all
sword = 0
bow = 0
dice = Dice.new
10000.times do |i|
dice.roll 3
if (dice.test 12) && (dice.feat >= 10)
dice.roll 3, true, 8, 0
if !dice.test 18
sword += 1
end
end
if i % 2 == 0
dice.roll 2
if (dice.test 18) && (dice.tengwars > 0)
dice.roll 3, true, 8, 0
if !dice.test 16
bow += 1
end
end
end
end
puts "sword: #{sword} bow: #{bow}"
Code: Select all
sword: 456 bow: 69