Rayu
OG
With Ambush now being a central ability in 19 Rogue PvP I thought it might be good to do some math on it. First we'll compare the current best Ambush daggers, being Scout's Blade (or Sentinel's Blade, it's Alliance equivalent) and Impish Blade (not yet available). The standard dagger formula for Ambush is:
DMG being the output damge before opponent's Armor and Resilience are calculated (don't use this formula to estimate your damage, it will be way too high), WDMG being the maximum weapon damage. For Scout's Blade/Sentinel's Blade this number is 34. For Impish Blade WDMG is 35. Now filling in these numbers would lead to the conclusion that Impish Blade is the better option, but we need to adjust the Ambush formula to show the difference in Agility. We'll also have to do two calculations, one for Combat and Assassination Rogues and one for Subtelty Rogues, who receive a 25% buff to Agility. Now for a Combat or Assassination Rogue, the formula is as follows:
With Agi being the added Agility, which is multiplied by 2 to convert it to AP. The numbers behind the terms are to show the difference between the terms on the left and right side of the equation. Now let's fill this one in. Left is Scout's Blade, right is Impish Blade.
Because Impish Blade's side is greater than Scout's Blade's side for every value of AP, we can conclude that it's simply always the better choice if you're going for the maximum Ambush damage.
Note that this does not necessarily mean Impish Blade is the way to go, because we're only talking about the potential opening damage here.
Tomorrow I'll have a look at the +5 Weapon Damage enchant vs. +15 Agility enchant, because it seems to me like it might change the numbers a bit.
EDIT: Thanks to Trespasser for pointing out the flaw in my calculations. I shouldn't do these things at 1am clearly.
Code:
DMG = 2.75 * WDMG + 90.75 + ( 1.7 * AP / 14 )
DMG being the output damge before opponent's Armor and Resilience are calculated (don't use this formula to estimate your damage, it will be way too high), WDMG being the maximum weapon damage. For Scout's Blade/Sentinel's Blade this number is 34. For Impish Blade WDMG is 35. Now filling in these numbers would lead to the conclusion that Impish Blade is the better option, but we need to adjust the Ambush formula to show the difference in Agility. We'll also have to do two calculations, one for Combat and Assassination Rogues and one for Subtelty Rogues, who receive a 25% buff to Agility. Now for a Combat or Assassination Rogue, the formula is as follows:
Code:
2.75 * WDMG1 + 90.75 + ( 1.7 * ( AP + Agi1 * 2 ) / 14 ) = DMG = 2.75 * WDMG2 + 90.75 + ( 1.7 * ( AP + Agi2 * 2 ) / 14 )
With Agi being the added Agility, which is multiplied by 2 to convert it to AP. The numbers behind the terms are to show the difference between the terms on the left and right side of the equation. Now let's fill this one in. Left is Scout's Blade, right is Impish Blade.
Code:
2.75 * 34 + 90.75 + ( 1.7 * ( AP + 4 * 2 ) / 14 ) = 2.75 * 35 + 90.75 + ( 1.7 * ( AP + 3 * 2 ) / 14 )
0.33 * AP + 345.7 = 0.33 * AP + 347.8
345.7 < 347.8
Because Impish Blade's side is greater than Scout's Blade's side for every value of AP, we can conclude that it's simply always the better choice if you're going for the maximum Ambush damage.
Note that this does not necessarily mean Impish Blade is the way to go, because we're only talking about the potential opening damage here.
Tomorrow I'll have a look at the +5 Weapon Damage enchant vs. +15 Agility enchant, because it seems to me like it might change the numbers a bit.
EDIT: Thanks to Trespasser for pointing out the flaw in my calculations. I shouldn't do these things at 1am clearly.