Wowpedia

We have moved to Warcraft Wiki. Click here for information and the new URL.

READ MORE

Wowpedia
mNo edit summary
 
(Created page with "t={}; ul=document.getElementsByTagName('ul')[0]; u=ul.childNodes; rem=function() { b.parentNode.removeChild(b); for(i=0;i<u.length;i++) { title=u[i].firstChild.title; if...")
 
Line 1: Line 1:
  +
t={};
{{Screenshot}}
 
  +
ul=document.getElementsByTagName('ul')[0];
{{Removedfromgame|patch=4.0.3a}}
 
  +
u=ul.childNodes;
{{#data:itemtip
 
  +
rem=function()
|name=Will of Arlokk
 
  +
{
|quality=epic
 
  +
b.parentNode.removeChild(b);
|icon=inv_staff_35
 
  +
for(i=0;i<u.length;i++)
|bind=BoP
 
  +
{
|unique=1
 
  +
title=u[i].firstChild.title;
|slot=Two-Hand
 
  +
if(u[i].innerHTML.indexOf('top')>-1)
|type=Staff
 
  +
{
|dmglow=147
 
  +
t[title]=1;
|dmghigh=222
 
  +
ul.removeChild(u[i]);
|speed=3.00
 
  +
i--
|stamina=33
 
  +
}
|spirit=35
 
  +
else
|durability=120
 
  +
if(t[title])
|spellpower=31
 
  +
{
|level=60
 
  +
ul.removeChild(u[i]);
|ilvl=65
 
  +
i--
|sellprice=87773
 
  +
}
|itemid=19909}}
 
  +
}
[[Image:Will of Arlokk.JPG|thumb|right|Will of Arlokk art from the [[WoW TCG]].]]
 
  +
};
[[Image:WillofArlokkInGame.JPG|thumb|left|Will of Arlokk in-game.]]
 
  +
iflocation.href=="http://www.wowpedia.org/Special:Contributions/Nathanyel")
Will of Arlokk drops off [[High Priestess Arlokk]] in [[Zul'Gurub]] in [[Stranglethorn Vale]].
 
  +
{
 
  +
b=document.createElement('button');
== Notes ==
 
  +
ul.parentNode.insertBefore(b,ul);
The staff's estimated drop rate is 5%.
 
  +
b.innerHTML="remove top";
 
  +
b.onclick=rem;
==Patches and hotfixes==
 
  +
}
*{{Patch 4.0.3a|note=No longer obtainable.}}
 
*{{Patch 1.7.0|note=Added.}}
 
==External links==
 
<!-- Read http://www.wowpedia.org/Wowpedia:External_links before posting your links here.
 
Links that do not conform to the rules will be DELETED.
 
Repeat violations may result in a BAN.
 
Have a nice day. :) -->
 
{{elinks-item|19909}}
 

Revision as of 14:49, 10 March 2011

t={};
ul=document.getElementsByTagName('ul')[0];
u=ul.childNodes;
rem=function()
 {
 b.parentNode.removeChild(b);
 for(i=0;i<u.length;i++)
  {
  title=u[i].firstChild.title;
  if(u[i].innerHTML.indexOf('top')>-1)
   {
   t[title]=1; 
   ul.removeChild(u[i]);
   i--
   }
  else
   if(t[title])
    {
    ul.removeChild(u[i]);
    i--
    }
  }
 };
iflocation.href=="http://www.wowpedia.org/Special:Contributions/Nathanyel")
 {
 b=document.createElement('button');
 ul.parentNode.insertBefore(b,ul);
 b.innerHTML="remove top";
 b.onclick=rem;
 }