Guest User

swift_reflexes

a guest
Feb 10th, 2016
135
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.66 KB | None | 0 0
  1. --[[
  2. "Whenever you parry an attack, you reflexively strike back at the enemy for ${0.3*$<low>} to ${0.3*$<high>} damage.
  3.  This strike has a 1 sec cooldown."
  4. --]]
  5.  
  6. -- stance 103985 = Stance of the Fierce Tiger
  7. $stnc=$?a103985[${1.2*7.5}][${1.0*7.5}]
  8. -- 108561 = 2h staff override
  9. $dwm1=$?a108561[${1}][${0.898882275}]
  10. -- 115697 = 2h polearm override
  11. $dwm=$?a115697[${1}][${$<dwm1>}]
  12. -- BM scaling 120267 = Brewmaster Vengeance
  13. $bm=$?s120267[${0.4}][${1}]
  14. -- 108561 = 2h staff override
  15. $offm1=$?a108561[${0}][${1}]
  16. -- 115697 = 2h polearm override
  17. $offm=$?a115697[${0}][${$<offm1>}]
  18. -- attack power coefficient? 120267 = Brewmaster Vengeance
  19. $apc=$?s120267[${$AP/11}][${$AP/14}]
  20. -- 124146 = Dual Wield
  21. $offlow=$?!s124146[${$mwb/2/$mws}][${$owb/2/$ows}]
  22. -- 124146 = Dual Wield
  23. $offhigh=$?!s124146[${$MWB/2/$mws}][${$OWB/2/$ows}]
  24. -- low end dmg
  25. $low=${$<stnc>*($<bm>*$<dwm>*(($mwb)/($MWS)+$<offm>*$<offlow>)+$<apc>-1)}
  26. -- high end dmg
  27. $high=${$<stnc>*($<bm>*$<dwm>*(($MWB)/($MWS)+$<offm>*$<offhigh>)+$<apc>+1)}
  28.  
  29. --[[
  30.  
  31. MWB=(Mainhand weapon max base damage)
  32. mwb=(Mainhand weapon min base damage)
  33. MWS=(Mainhand weapon base speed)
  34. mws=(Mainhand weapon base speed)
  35.  
  36. --]]
  37.  
  38. --[[
  39.  
  40.     ULMA BREWMASTER STATS
  41.    
  42.     ATTACK POWER:                   35442
  43.     MAIN HAND MIN BASE DMG:         12708
  44.     MAIN HAND MAX BASE DMG:         19063
  45.     MAIN HAND WPN BASE SPD:         3.3
  46.     WEAPON TYPE:                    STAFF
  47.    
  48.     FREAKZ SWIFT REFLEXES:          1914-2492
  49.  
  50. --]]
  51.  
  52. --[[
  53.  
  54.     low=    1* 7.5 * 0.4 * 1 * ((( 12708 / 3.3) + 0) + ( 35442 / 11 - 1)) = 21215.72
  55.     high=   1* 7.5 * 0.4 * 1 * ((( 19063 / 3.3) + 0) + ( 35442 / 11 - 1)) = 26993
  56.     CALCULATED SWIFT REFLEXES:  0.3 * low to 0.3 * high = 6364.71 to 8097.9 = ~6465 to ~8098
  57.    
  58. --]]
Advertisement
Add Comment
Please, Sign In to add comment