Page 1 of 1

How does dismissal work?

Posted: Fri Sep 12, 2014 4:32 am
by jenx
it says:

"Each time you take damage, you roll 31% of your mental save against it. A successful saving throw can crit and will reduce the damage by at least 50%"


It is the second sentence that makes little sense.

Let's say I have mental save of 20. So, I have 31% of 20 to save against damage, that is 6.2% chance to dismiss damage. So, let's say I throw a 5 out of 100 and save against damage.

Such a throw can crit. If crit is 150%, does that mean my throw is effectively 7.5 ???? but then, how much is my damaged reduced by? Is it 50% plus 7.5% , so I reduce by 57.5% ???

Basically, the description makes little sense.

Can someone please exaplin how this works, and fix the talent description?

Re: How does dismissal work?

Posted: Fri Sep 12, 2014 5:14 am
by grayswandir
You don't actually roll against your mindsave like that. Instead, the damage amount of the incoming attack is treated as a mindpower.
So in your example, instead of a 6.2% chance to save against damage, you're treated as having a mindsave of 6.2. That means you have a 50% chance to dismiss a hit for 6.2 damage, a 25% chance to dismiss at hit for 16.2 damage, and it'll always fail at 26.2 or higher.


For the crit, I dunno, lessee...

Code: Select all

local dismissed = value * (1 - (1 / self:mindCrit(2)))
So the amount of damage you take is divided by 2. If you make the crit, that 2 is multiplied by your crit power.
So with a standard crit power of 150% that'd be 3 and you'd take 1/3 of the damage.
At 200% crit power you'd take 1/4, etc.

Re: How does dismissal work?

Posted: Sat Sep 13, 2014 7:22 am
by jenx
grayswandir wrote:You don't actually roll against your mindsave like that. Instead, the damage amount of the incoming attack is treated as a mindpower.
So in your example, instead of a 6.2% chance to save against damage, you're treated as having a mindsave of 6.2. That means you have a 50% chance to dismiss a hit for 6.2 damage, a 25% chance to dismiss at hit for 16.2 damage, and it'll always fail at 26.2 or higher.


For the crit, I dunno, lessee...

Code: Select all

local dismissed = value * (1 - (1 / self:mindCrit(2)))
So the amount of damage you take is divided by 2. If you make the crit, that 2 is multiplied by your crit power.
So with a standard crit power of 150% that'd be 3 and you'd take 1/3 of the damage.
At 200% crit power you'd take 1/4, etc.
really? then that makes the description even more bizarre and inaccurate.

and i still don't understand how you got all those figures. is there a simpler explanation?

Re: How does dismissal work?

Posted: Sat Sep 13, 2014 3:11 pm
by edge2054
Dismissal rolls your mental save against the damage, treating damage as the power saved against. If the save is successful, the damage from the attack is reduced by half. The effect can crit, further reducing the damage.

Re: How does dismissal work?

Posted: Sun Sep 14, 2014 9:05 am
by jenx
edge2054 wrote:Dismissal rolls your mental save against the damage, treating damage as the power saved against. If the save is successful, the damage from the attack is reduced by half. The effect can crit, further reducing the damage.
so, can you elaborate on this bit: "treating damage as the power saved against" - for example, i take 500 damage and i have mental save of 52. i still don't understand how you roll 52 against 500.

and which bit crits?

Re: How does dismissal work?

Posted: Sun Sep 14, 2014 9:35 am
by HousePet
Its the same as any other save roll.

The bit that crits is the divide by 2.

Re: How does dismissal work?

Posted: Sat Sep 20, 2014 11:07 am
by jenx
ok, so i ran dismissal with the log flushed and studied it. it is even more bizarre than I thought, and hard to understand.

you are right, the incoming dmg is rolled against, but that means dismissal doesn't ever work against large dmg amounts, making it pretty hopeless for nightmare and above modes.

and the description is poorly written.

i think the talent needs reworking and rewording.

Re: How does dismissal work?

Posted: Sun Sep 21, 2014 12:32 am
by HousePet
Well it made sense to me, and not every talent has to be burst protection.

Re: How does dismissal work?

Posted: Sun Sep 21, 2014 4:25 am
by breadsmith
I think it makes perfect sense. This is all in my head. And therefore it actually makes sense.