List of enrage IDs
Rainrider opened this issue ยท 1 comments
wowhead finds 2 more enrage spells - 154982 and 180643, but the second one appears to be some battle pet related stuff.
In case it is of any use, I used the following two-liner to fetch the ids:
$r = Invoke-RestMethod -Uri "http://www.wowhead.com/spells?filter=dt=9"
[regex]::matches($r, "_\[(\d+)\]={") | select value | %{ if ($_ -match "(\d+)"){[int]$matches[1]}} | sort -unique | out-file .\wowhead.txt
Could surely by written better, but I didn't know a thing about PowerShell two days ago :)