<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://vanilla-plus.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lokiy</id>
	<title>Vanilla Plus - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://vanilla-plus.wiki/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Lokiy"/>
	<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Special:Contributions/Lokiy"/>
	<updated>2026-05-09T10:57:47Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.2</generator>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Azus_the_Bloodseeker&amp;diff=1783</id>
		<title>Azus the Bloodseeker</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Azus_the_Bloodseeker&amp;diff=1783"/>
		<updated>2025-07-13T21:46:37Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Start of Azus Page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Penultimate boss of Zul&#039;Gurub.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Health&#039;&#039;&#039;: ~750,000 (Confirm?); &#039;&#039;&#039;Mana&#039;&#039;&#039;: 0/0&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Armor&#039;&#039;&#039;: 4950; &#039;&#039;&#039;FR&#039;&#039;&#039;: 44 &#039;&#039;&#039;NR&#039;&#039;&#039;: 75 &#039;&#039;&#039;FrR&#039;&#039;&#039;: 12 &#039;&#039;&#039;SR&#039;&#039;&#039;: 44 &#039;&#039;&#039;AR&#039;&#039;&#039;: 44&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Damage&#039;&#039;&#039;: MH 2781 - 3422 | OH: 1390.5 - 1711 (@?)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Abilities:&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Lacerate - 45 seconds, whenever you move you take X% of your maximum HP as damage. &lt;br /&gt;
* Rupture - 60 seconds, every 5? seconds you&#039;ll take 10/15% of your maximum HP as damage.&lt;br /&gt;
* Blood Tide&lt;br /&gt;
* Blood Cloud&lt;br /&gt;
* Slimes&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=MediaWiki:Common.js&amp;diff=1678</id>
		<title>MediaWiki:Common.js</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=MediaWiki:Common.js&amp;diff=1678"/>
		<updated>2025-02-13T19:04:59Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* Any JavaScript here will be loaded for all users on every page load. */&lt;br /&gt;
document.addEventListener(&amp;quot;DOMContentLoaded&amp;quot;, function () {&lt;br /&gt;
    document.querySelectorAll(&amp;quot;.image-link&amp;quot;).forEach(link =&amp;gt; {&lt;br /&gt;
        let imgUrl = link.getAttribute(&amp;quot;data-img&amp;quot;);&lt;br /&gt;
        if (imgUrl) {&lt;br /&gt;
            let previewDiv = document.createElement(&amp;quot;div&amp;quot;);&lt;br /&gt;
            previewDiv.classList.add(&amp;quot;image-preview&amp;quot;);&lt;br /&gt;
            previewDiv.style.backgroundImage = `url(&#039;${imgUrl}&#039;)`;&lt;br /&gt;
&lt;br /&gt;
            link.parentNode.insertBefore(previewDiv, link.nextSibling);&lt;br /&gt;
&lt;br /&gt;
            link.addEventListener(&amp;quot;mouseenter&amp;quot;, () =&amp;gt; {&lt;br /&gt;
                previewDiv.style.display = &amp;quot;block&amp;quot;;&lt;br /&gt;
            });&lt;br /&gt;
&lt;br /&gt;
            link.addEventListener(&amp;quot;mouseleave&amp;quot;, () =&amp;gt; {&lt;br /&gt;
                previewDiv.style.display = &amp;quot;none&amp;quot;;&lt;br /&gt;
            });&lt;br /&gt;
        }&lt;br /&gt;
    });&lt;br /&gt;
});&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=MediaWiki:Common.css&amp;diff=1677</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=MediaWiki:Common.css&amp;diff=1677"/>
		<updated>2025-02-13T19:04:00Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;.image-link {&lt;br /&gt;
    position: relative;&lt;br /&gt;
    text-decoration: none;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.image-preview {&lt;br /&gt;
    position: absolute;&lt;br /&gt;
    top: 100%;&lt;br /&gt;
    left: 50%;&lt;br /&gt;
    transform: translateX(-50%);&lt;br /&gt;
    width: 200px; /* Adjust as needed */&lt;br /&gt;
    height: 200px; /* Adjust as needed */&lt;br /&gt;
    background-size: cover;&lt;br /&gt;
    background-position: center;&lt;br /&gt;
    background-repeat: no-repeat;&lt;br /&gt;
    display: none;&lt;br /&gt;
    border: 1px solid #ccc;&lt;br /&gt;
    z-index: 10;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.image-link:hover + .image-preview {&lt;br /&gt;
    display: block;&lt;br /&gt;
}&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1676</id>
		<title>Shen&#039;dralar</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1676"/>
		<updated>2025-02-13T18:39:39Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Shen&#039;dralar&#039;&#039;&#039; meaning &amp;quot;Those Who Remain Hidden&amp;quot; are a secretive Highborne society who dwelled in the Athenaeum within Eldre&#039;Thalas.&lt;br /&gt;
&lt;br /&gt;
You can visit the Shen&#039;dralar faction in two ways: going to Dire Maul North and opening the door close to the entrance or to go through the backdoor in Dire Maul West.&lt;br /&gt;
&lt;br /&gt;
== Reputation ==&lt;br /&gt;
In contrast to Classic, the Shen&#039;dralar reputation has been expanded and a new way of acquiring reputation has been added. Previously it was only possible to get reputation by turning in books which awarded Librams and enchants.&lt;br /&gt;
&lt;br /&gt;
All hostile creatures in the Dire Maul wings can now drop [&amp;lt;nowiki/&amp;gt;[[Old Shabby Parchment Page]]]. They can be combined into an [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] at a conversation rate of 10:1. Each [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] can be turned in for 500 reputation.&lt;br /&gt;
&lt;br /&gt;
{{HoverImage|ShroudofSpellbinder|https://vanilla-plus.wiki/images/8/8f/ShroudOfSpellbinder.jpg}}&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Reputation&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Type&lt;br /&gt;
|-&lt;br /&gt;
|Neutral&lt;br /&gt;
|Pattern: Mooncloth Robe&lt;br /&gt;
|&lt;br /&gt;
|Tailoring 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;8&amp;quot; |&#039;&#039;&#039;Friendly&#039;&#039;&#039;&lt;br /&gt;
|Scroll of Divinity&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Mana Channeling&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Strength IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Agility IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Intellect IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Stamina IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Spirit IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Protection IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&#039;&#039;&#039;Honored&#039;&#039;&#039;&lt;br /&gt;
|Amazing Halo&lt;br /&gt;
|&lt;br /&gt;
|Cloth&lt;br /&gt;
|-&lt;br /&gt;
|Rusty Kaldorei Pauldrons&lt;br /&gt;
|&lt;br /&gt;
|Plate&lt;br /&gt;
|-&lt;br /&gt;
|Savvy Hood&lt;br /&gt;
|&lt;br /&gt;
|Leather&lt;br /&gt;
|-&lt;br /&gt;
|Shroud of Spellbinder&lt;br /&gt;
|&lt;br /&gt;
|Back&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Unlimited Power&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Animate Dead&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Haste&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Revered&#039;&#039;&#039;&lt;br /&gt;
|Greater Arcanum of Avoidance&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Concentration&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Accuracy&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Manual: Magic Infused Bandage&lt;br /&gt;
|&lt;br /&gt;
|First Aid 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Exalted&#039;&#039;&#039;&lt;br /&gt;
|Shen&#039;dralar Badge of Restoration&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Detterence&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Assasination&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Annihilation&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Quests ===&lt;br /&gt;
All quests for Shen&#039;dralar award reputation in addition to their quest reward.&lt;br /&gt;
&lt;br /&gt;
Book return: Turn in 1 Old Heavy Folio for 500 reputation and one of the follow:&lt;br /&gt;
&lt;br /&gt;
A Wisp&#039;s Tale&lt;br /&gt;
&lt;br /&gt;
Highborne Scrolls&lt;br /&gt;
&lt;br /&gt;
Legacy of Suramar&lt;br /&gt;
&lt;br /&gt;
Memory of Hyjal&lt;br /&gt;
&lt;br /&gt;
Nightborne Fury Saga&lt;br /&gt;
&lt;br /&gt;
Scroll of the Moon&lt;br /&gt;
&lt;br /&gt;
==== Class quests ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Book&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Quest&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Reward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Druid&lt;br /&gt;
|[https://classicdb.ch/?item=18364 The Emerald Dream]&lt;br /&gt;
|The Emerald Dream...&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Hunter&lt;br /&gt;
|[https://classicdb.ch/?item=18361 The Greatest Race of Hunters]&lt;br /&gt;
|The Greatest Race of &lt;br /&gt;
Hunters&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Mage&lt;br /&gt;
|[https://classicdb.ch/?item=18358 The Arcanist&#039;s Cookbook]&lt;br /&gt;
|The Arcanist&#039;s Cookbook&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18359 The Light and How to Swing It]&lt;br /&gt;
|The Light and How To Swing It&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Priest&lt;br /&gt;
|[https://classicdb.ch/?item=18362 Holy Bologna: What the Light Won&#039;t Tell You]&lt;br /&gt;
|Holy Bologna: What the Light Won&#039;t Tell You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Rogue&lt;br /&gt;
|[https://classicdb.ch/?item=18356 Garona: A Study on Stealth and Treachery]&lt;br /&gt;
|Garona: A Study on Stealth and Treachery&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Shaman&lt;br /&gt;
|[https://classicdb.ch/?item=18363 Frost Shock and You]&lt;br /&gt;
|Frost Shock and You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warlock&lt;br /&gt;
|[https://classicdb.ch/?item=18360 Harnessing Shadows]&lt;br /&gt;
|Harnessing Shadows&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
|[https://classicdb.ch/?item=18357 Codex of Defense]&lt;br /&gt;
|Codex of Defense&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18401 Foror&#039;s Compedium of Dragon Slaying]&lt;br /&gt;
|Foror&#039;s Compendium&lt;br /&gt;
|Quel&#039;Sarrar&lt;br /&gt;
|}&lt;br /&gt;
==== Librams ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Reward&lt;br /&gt;
!?&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Focus&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Protection&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Rapidity&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Misc quests ====&lt;br /&gt;
Enchanted Thorium Blacksmithing Plans&lt;br /&gt;
&lt;br /&gt;
== Important NPCs ==&lt;br /&gt;
&amp;lt;Item Vendor&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;People you can turn Blue Books in&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Person you deliver Books to&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Shroud_of_Spellbinder&amp;diff=1664</id>
		<title>Shroud of Spellbinder</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Shroud_of_Spellbinder&amp;diff=1664"/>
		<updated>2025-02-12T10:16:14Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Created page&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;placeholder&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1624</id>
		<title>Shen&#039;dralar</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1624"/>
		<updated>2025-02-11T21:27:07Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Shen&#039;dralar&#039;&#039;&#039; meaning &amp;quot;Those Who Remain Hidden&amp;quot; are a secretive Highborne society who dwelled in the Athenaeum within Eldre&#039;Thalas.&lt;br /&gt;
&lt;br /&gt;
You can visit the Shen&#039;dralar faction in two ways: going to Dire Maul North and opening the door close to the entrance or to go through the backdoor in Dire Maul West.&lt;br /&gt;
&lt;br /&gt;
== Reputation ==&lt;br /&gt;
In contrast to Classic, the Shen&#039;dralar reputation has been expanded and a new way of acquiring reputation has been added. Previously it was only possible to get reputation by turning in books which awarded Librams and enchants.&lt;br /&gt;
&lt;br /&gt;
All hostile creatures in the Dire Maul wings can now drop [&amp;lt;nowiki/&amp;gt;[[Old Shabby Parchment Page]]]. They can be combined into an [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] at a conversation rate of 10:1. Each [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] can be turned in for 500 reputation.&lt;br /&gt;
&lt;br /&gt;
{{Tooltip|Shroud of Spellbinder|[[File:ShroudOfSpellbinder.jpg|200px]]}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Reputation&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Type&lt;br /&gt;
|-&lt;br /&gt;
|Neutral&lt;br /&gt;
|Pattern: Mooncloth Robe&lt;br /&gt;
|&lt;br /&gt;
|Tailoring 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;8&amp;quot; |&#039;&#039;&#039;Friendly&#039;&#039;&#039;&lt;br /&gt;
|Scroll of Divinity&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Mana Channeling&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Strength IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Agility IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Intellect IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Stamina IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Spirit IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Protection IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&#039;&#039;&#039;Honored&#039;&#039;&#039;&lt;br /&gt;
|Amazing Halo&lt;br /&gt;
|&lt;br /&gt;
|Cloth&lt;br /&gt;
|-&lt;br /&gt;
|Rusty Kaldorei Pauldrons&lt;br /&gt;
|&lt;br /&gt;
|Plate&lt;br /&gt;
|-&lt;br /&gt;
|Savvy Hood&lt;br /&gt;
|&lt;br /&gt;
|Leather&lt;br /&gt;
|-&lt;br /&gt;
|Shroud of Spellbinder&lt;br /&gt;
|&lt;br /&gt;
|Back&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Unlimited Power&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Animate Dead&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Haste&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Revered&#039;&#039;&#039;&lt;br /&gt;
|Greater Arcanum of Avoidance&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Concentration&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Accuracy&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Manual: Magic Infused Bandage&lt;br /&gt;
|&lt;br /&gt;
|First Aid 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Exalted&#039;&#039;&#039;&lt;br /&gt;
|Shen&#039;dralar Badge of Restoration&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Detterence&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Assasination&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Annihilation&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Quests ===&lt;br /&gt;
All quests for Shen&#039;dralar award reputation in addition to their quest reward.&lt;br /&gt;
&lt;br /&gt;
==== Class quests ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Book&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Quest&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Reward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Druid&lt;br /&gt;
|[https://classicdb.ch/?item=18364 The Emerald Dream]&lt;br /&gt;
|The Emerald Dream...&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Hunter&lt;br /&gt;
|[https://classicdb.ch/?item=18361 The Greatest Race of Hunters]&lt;br /&gt;
|The Greatest Race of &lt;br /&gt;
Hunters&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Mage&lt;br /&gt;
|[https://classicdb.ch/?item=18358 The Arcanist&#039;s Cookbook]&lt;br /&gt;
|The Arcanist&#039;s Cookbook&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18359 The Light and How to Swing It]&lt;br /&gt;
|The Light and How To Swing It&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Priest&lt;br /&gt;
|[https://classicdb.ch/?item=18362 Holy Bologna: What the Light Won&#039;t Tell You]&lt;br /&gt;
|Holy Bologna: What the Light Won&#039;t Tell You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Rogue&lt;br /&gt;
|[https://classicdb.ch/?item=18356 Garona: A Study on Stealth and Treachery]&lt;br /&gt;
|Garona: A Study on Stealth and Treachery&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Shaman&lt;br /&gt;
|[https://classicdb.ch/?item=18363 Frost Shock and You]&lt;br /&gt;
|Frost Shock and You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warlock&lt;br /&gt;
|[https://classicdb.ch/?item=18360 Harnessing Shadows]&lt;br /&gt;
|Harnessing Shadows&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
|[https://classicdb.ch/?item=18357 Codex of Defense]&lt;br /&gt;
|Codex of Defense&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18401 Foror&#039;s Compedium of Dragon Slaying]&lt;br /&gt;
|Foror&#039;s Compendium&lt;br /&gt;
|Quel&#039;Sarrar&lt;br /&gt;
|}&lt;br /&gt;
==== Librams ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Reward&lt;br /&gt;
!?&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Focus&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Protection&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Rapidity&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Misc quests ====&lt;br /&gt;
Enchanted Thorium Blacksmithing Plans&lt;br /&gt;
&lt;br /&gt;
== Important NPCs ==&lt;br /&gt;
&amp;lt;Item Vendor&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;People you can turn Blue Books in&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Person you deliver Books to&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=File:ShroudOfSpellbinder.jpg&amp;diff=1623</id>
		<title>File:ShroudOfSpellbinder.jpg</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=File:ShroudOfSpellbinder.jpg&amp;diff=1623"/>
		<updated>2025-02-11T21:25:12Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1620</id>
		<title>Shen&#039;dralar</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1620"/>
		<updated>2025-02-11T20:52:13Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Shen&#039;dralar&#039;&#039;&#039; meaning &amp;quot;Those Who Remain Hidden&amp;quot; are a secretive Highborne society who dwelled in the Athenaeum within Eldre&#039;Thalas.&lt;br /&gt;
&lt;br /&gt;
You can visit the Shen&#039;dralar faction in two ways: going to Dire Maul North and opening the door close to the entrance or to go through the backdoor in Dire Maul West.&lt;br /&gt;
&lt;br /&gt;
== Reputation ==&lt;br /&gt;
In contrast to Classic, the Shen&#039;dralar reputation has been expanded and a new way of acquiring reputation has been added. Previously it was only possible to get reputation by turning in books which awarded Librams and enchants.&lt;br /&gt;
&lt;br /&gt;
All hostile creatures in the Dire Maul wings can now drop [&amp;lt;nowiki/&amp;gt;[[Old Shabby Parchment Page]]]. They can be combined into an [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] at a conversation rate of 10:1. Each [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] can be turned in for 500 reputation.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Reputation&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Type&lt;br /&gt;
|-&lt;br /&gt;
|Neutral&lt;br /&gt;
|Pattern: Mooncloth Robe&lt;br /&gt;
|&lt;br /&gt;
|Tailoring 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;8&amp;quot; |&#039;&#039;&#039;Friendly&#039;&#039;&#039;&lt;br /&gt;
|Scroll of Divinity&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Mana Channeling&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Strength IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Agility IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Intellect IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Stamina IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Spirit IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Protection IV&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&#039;&#039;&#039;Honored&#039;&#039;&#039;&lt;br /&gt;
|Amazing Halo&lt;br /&gt;
|&lt;br /&gt;
|Cloth&lt;br /&gt;
|-&lt;br /&gt;
|Rusty Kaldorei Pauldrons&lt;br /&gt;
|&lt;br /&gt;
|Plate&lt;br /&gt;
|-&lt;br /&gt;
|Savvy Hood&lt;br /&gt;
|&lt;br /&gt;
|Leather&lt;br /&gt;
|-&lt;br /&gt;
|Shroud of Spellbinder&lt;br /&gt;
|&lt;br /&gt;
|Back&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Unlimited Power&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Animate Dead&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Haste&lt;br /&gt;
|&lt;br /&gt;
|Consumable&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Revered&#039;&#039;&#039;&lt;br /&gt;
|Greater Arcanum of Avoidance&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Concentration&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Accuracy&lt;br /&gt;
|&lt;br /&gt;
|Enchant&lt;br /&gt;
|-&lt;br /&gt;
|Manual: Magic Infused Bandage&lt;br /&gt;
|&lt;br /&gt;
|First Aid 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Exalted&#039;&#039;&#039;&lt;br /&gt;
|Shen&#039;dralar Badge of Restoration&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Detterence&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Assasination&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Annihilation&lt;br /&gt;
|&lt;br /&gt;
|Trinket&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Quests ===&lt;br /&gt;
All quests for Shen&#039;dralar award reputation in addition to their quest reward.&lt;br /&gt;
&lt;br /&gt;
==== Class quests ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Book&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Quest&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Reward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Druid&lt;br /&gt;
|[https://classicdb.ch/?item=18364 The Emerald Dream]&lt;br /&gt;
|The Emerald Dream...&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Hunter&lt;br /&gt;
|[https://classicdb.ch/?item=18361 The Greatest Race of Hunters]&lt;br /&gt;
|The Greatest Race of &lt;br /&gt;
Hunters&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Mage&lt;br /&gt;
|[https://classicdb.ch/?item=18358 The Arcanist&#039;s Cookbook]&lt;br /&gt;
|The Arcanist&#039;s Cookbook&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18359 The Light and How to Swing It]&lt;br /&gt;
|The Light and How To Swing It&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Priest&lt;br /&gt;
|[https://classicdb.ch/?item=18362 Holy Bologna: What the Light Won&#039;t Tell You]&lt;br /&gt;
|Holy Bologna: What the Light Won&#039;t Tell You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Rogue&lt;br /&gt;
|[https://classicdb.ch/?item=18356 Garona: A Study on Stealth and Treachery]&lt;br /&gt;
|Garona: A Study on Stealth and Treachery&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Shaman&lt;br /&gt;
|[https://classicdb.ch/?item=18363 Frost Shock and You]&lt;br /&gt;
|Frost Shock and You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warlock&lt;br /&gt;
|[https://classicdb.ch/?item=18360 Harnessing Shadows]&lt;br /&gt;
|Harnessing Shadows&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
|[https://classicdb.ch/?item=18357 Codex of Defense]&lt;br /&gt;
|Codex of Defense&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18401 Foror&#039;s Compedium of Dragon Slaying]&lt;br /&gt;
|Foror&#039;s Compendium&lt;br /&gt;
|Quel&#039;Sarrar&lt;br /&gt;
|}&lt;br /&gt;
==== Librams ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Reward&lt;br /&gt;
!?&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Focus&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Protection&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Libram of Rapidity&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==== Misc quests ====&lt;br /&gt;
Enchanted Thorium Blacksmithing Plans&lt;br /&gt;
&lt;br /&gt;
== Important NPCs ==&lt;br /&gt;
&amp;lt;Item Vendor&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;People you can turn Blue Books in&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Person you deliver Books to&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1619</id>
		<title>Shen&#039;dralar</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1619"/>
		<updated>2025-02-11T20:05:47Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Added items + fixed links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Shen&#039;dralar&#039;&#039;&#039; meaning &amp;quot;Those Who Remain Hidden&amp;quot; are a secretive Highborne society who dwelled in the Athenaeum within Eldre&#039;Thalas.&lt;br /&gt;
&lt;br /&gt;
You can visit the Shen&#039;dralar faction in two ways: going to Dire Maul North and opening the door close to the entrance or to go through the backdoor in Dire Maul West.&lt;br /&gt;
&lt;br /&gt;
== Reputation ==&lt;br /&gt;
In contrast to Classic, the Shen&#039;dralar reputation has been expanded and a new way of acquiring reputation has been added. Previously it was only possible to get reputation by turning in books which awarded Librams and enchants.&lt;br /&gt;
&lt;br /&gt;
All hostile creatures in the Dire Maul wings can now drop [&amp;lt;nowiki/&amp;gt;[[Old Shabby Parchment Page]]]. They can be combined into an [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] at a conversation rate of 10:1. Each [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] can be turned in for 500 reputation.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Reputation&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Type&lt;br /&gt;
|-&lt;br /&gt;
|Neutral&lt;br /&gt;
|Pattern: Mooncloth Robe&lt;br /&gt;
|&lt;br /&gt;
|Tailoring 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;8&amp;quot; |&#039;&#039;&#039;Friendly&#039;&#039;&#039;&lt;br /&gt;
|Scroll of Divinity&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Mana Channeling&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Strength IV&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Agility IV&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Intellect IV&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Stamina IV&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Spirit IV&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Protection IV&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;7&amp;quot; |&#039;&#039;&#039;Honored&#039;&#039;&#039;&lt;br /&gt;
|Amazing Halo&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Rusty Kaldorei Pauldrons&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Savvy Hood&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Shroud of Spellbinder&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Unlimited Power&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Animate Dead&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Scroll of Haste&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Revered&#039;&#039;&#039;&lt;br /&gt;
|Greater Arcanum of Avoidance&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Concentration&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Greater Arcanum of Accuracy&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Manual: Magic Infused Bandage&lt;br /&gt;
|&lt;br /&gt;
|First Aid 300&lt;br /&gt;
|-&lt;br /&gt;
| rowspan=&amp;quot;4&amp;quot; |&#039;&#039;&#039;Exalted&#039;&#039;&#039;&lt;br /&gt;
|Shen&#039;dralar Badge of Restoration&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Detterence&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Assasination&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|Shen&#039;dralar Badge of Annihilation&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Quests ===&lt;br /&gt;
All quests for Shen&#039;dralar award reputation in addition to their quest reward.&lt;br /&gt;
&lt;br /&gt;
==== Class quests ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Book&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Quest&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Reward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Druid&lt;br /&gt;
|[https://classicdb.ch/?item=18364 The Emerald Dream]&lt;br /&gt;
|The Emerald Dream...&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Hunter&lt;br /&gt;
|[https://classicdb.ch/?item=18361 The Greatest Race of Hunters]&lt;br /&gt;
|The Greatest Race of &lt;br /&gt;
Hunters&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Mage&lt;br /&gt;
|[https://classicdb.ch/?item=18358 The Arcanist&#039;s Cookbook]&lt;br /&gt;
|The Arcanist&#039;s Cookbook&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18359 The Light and How to Swing It]&lt;br /&gt;
|The Light and How To Swing It&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Priest&lt;br /&gt;
|[https://classicdb.ch/?item=18362 Holy Bologna: What the Light Won&#039;t Tell You]&lt;br /&gt;
|Holy Bologna: What the Light Won&#039;t Tell You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Rogue&lt;br /&gt;
|[https://classicdb.ch/?item=18356 Garona: A Study on Stealth and Treachery]&lt;br /&gt;
|Garona: A Study on Stealth and Treachery&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Shaman&lt;br /&gt;
|[https://classicdb.ch/?item=18363 Frost Shock and You]&lt;br /&gt;
|Frost Shock and You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warlock&lt;br /&gt;
|[https://classicdb.ch/?item=18360 Harnessing Shadows]&lt;br /&gt;
|Harnessing Shadows&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
|[https://classicdb.ch/?item=18357 Codex of Defense]&lt;br /&gt;
|Codex of Defense&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
Paladin&lt;br /&gt;
|[https://classicdb.ch/?item=18401 Foror&#039;s Compedium of Dragon Slaying]&lt;br /&gt;
|Foror&#039;s Compendium&lt;br /&gt;
|Quel&#039;Sarrar&lt;br /&gt;
|}&lt;br /&gt;
==== Librams ====&lt;br /&gt;
Libram of Focus&lt;br /&gt;
&lt;br /&gt;
Libram of Protection&lt;br /&gt;
&lt;br /&gt;
Libram of Rapidity&lt;br /&gt;
&lt;br /&gt;
==== Misc quests ====&lt;br /&gt;
Enchanted Thorium Blacksmithing Plans&lt;br /&gt;
&lt;br /&gt;
== Important NPCs ==&lt;br /&gt;
&amp;lt;Item Vendor&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;People you can turn Blue Books in&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Person you deliver Books to&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1618</id>
		<title>Shen&#039;dralar</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1618"/>
		<updated>2025-02-11T14:08:04Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Added some direct wiki links&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Shen&#039;dralar&#039;&#039;&#039; meaning &amp;quot;Those Who Remain Hidden&amp;quot; are a secretive Highborne society who dwelled in the Athenaeum within Eldre&#039;Thalas.&lt;br /&gt;
&lt;br /&gt;
You can visit the Shen&#039;dralar faction in two ways: going to Dire Maul North and opening the door close to the entrance or to go through the backdoor in Dire Maul West.&lt;br /&gt;
&lt;br /&gt;
== Reputation ==&lt;br /&gt;
In contrast to Classic, the Shen&#039;dralar reputation has been expanded and a new way of acquiring reputation has been added. Previously it was only possible to get reputation by turning in books which awarded Librams and enchants.&lt;br /&gt;
&lt;br /&gt;
All hostile creatures in the Dire Maul wings can now drop [&amp;lt;nowiki/&amp;gt;[[Old Shabby Parchment Page]]]. They can be combined into an [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] at a conversation rate of 10:1. Each [&amp;lt;nowiki/&amp;gt;[[Old Heavy Folio]]] can be turned in for 500 reputation.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Reputation&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Quests ===&lt;br /&gt;
All quests for Shen&#039;dralar award reputation in addition to their quest reward.&lt;br /&gt;
&lt;br /&gt;
==== Class quests ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Book&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Quest&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Reward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Druid&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18364/the-emerald-dream The Emerald Dream]&lt;br /&gt;
|The Emerald Dream...&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Hunter&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18361/the-greatest-race-of-hunters The Greatest Race of Hunters]&lt;br /&gt;
|The Greatest Race of &lt;br /&gt;
Hunters&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Mage&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18358/the-arcanists-cookbook The Arcanist&#039;s Cookbook]&lt;br /&gt;
|The Arcanist&#039;s Cookbook&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Paladin&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18359/the-light-and-how-to-swing-it The Light and How to Swing It]&lt;br /&gt;
|The Light and How To Swing It&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Priest&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18362/holy-bologna-what-the-light-wont-tell-you Holy Bologna: What the Light Won&#039;t Tell You]&lt;br /&gt;
|Holy Bologna: What the Light Won&#039;t Tell You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Rogue&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18356/garona-a-study-on-stealth-and-treachery Garona: A Study on Stealth and Treachery]&lt;br /&gt;
|Garona: A Study on Stealth and Treachery&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Shaman&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18363/frost-shock-and-you Frost Shock and You]&lt;br /&gt;
|Frost Shock and You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warlock&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18360/harnessing-shadows Harnessing Shadows]&lt;br /&gt;
|Harnessing Shadows&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18357/codex-of-defense Codex of Defense]&lt;br /&gt;
|Codex of Defense&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|}&lt;br /&gt;
Quel&#039;Serrar quest&lt;br /&gt;
&lt;br /&gt;
==== Librams ====&lt;br /&gt;
Libram of Focus&lt;br /&gt;
&lt;br /&gt;
Libram of Protection&lt;br /&gt;
&lt;br /&gt;
Libram of Rapidity&lt;br /&gt;
&lt;br /&gt;
==== Misc quests ====&lt;br /&gt;
Enchanted Thorium Blacksmithing Plans&lt;br /&gt;
&lt;br /&gt;
== Important NPCs ==&lt;br /&gt;
&amp;lt;Item Vendor&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;People you can turn Blue Books in&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Person you deliver Books to&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1617</id>
		<title>Shen&#039;dralar</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=Shen%27dralar&amp;diff=1617"/>
		<updated>2025-02-11T14:02:46Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Made a start on Shen&amp;#039;dralar faction&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The &#039;&#039;&#039;Shen&#039;dralar&#039;&#039;&#039; meaning &amp;quot;Those Who Remain Hidden&amp;quot; are a secretive Highborne society who dwelled in the Athenaeum within Eldre&#039;Thalas.&lt;br /&gt;
&lt;br /&gt;
You can visit the Shen&#039;dralar faction in two ways: going to Dire Maul North and opening the door close to the entrance or to go through the backdoor in Dire Maul West.&lt;br /&gt;
&lt;br /&gt;
== Reputation ==&lt;br /&gt;
In contrast to Classic, the Shen&#039;dralar reputation has been expanded and a new way of acquiring reputation has been added. Previously it was only possible to get reputation by turning in books which awarded Librams and enchants.&lt;br /&gt;
&lt;br /&gt;
All hostile creatures in the Dire Maul wings can now drop [Old Shabby Parchment Page]. They can be combined into an [Old Heavy Folio] at a conversation rate of 10:1. Each [Old Heavy Folio] can be turned in for 500 reputation.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|+&lt;br /&gt;
!Reputation&lt;br /&gt;
!Item&lt;br /&gt;
!Cost&lt;br /&gt;
!Type&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
=== Quests ===&lt;br /&gt;
All quests for Shen&#039;dralar award reputation in addition to their quest reward.&lt;br /&gt;
&lt;br /&gt;
==== Class quests ====&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|&#039;&#039;&#039;Class&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Book&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Quest&#039;&#039;&#039;&lt;br /&gt;
|&#039;&#039;&#039;Reward&#039;&#039;&#039;&lt;br /&gt;
|-&lt;br /&gt;
|Druid&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18364/the-emerald-dream The Emerald Dream]&lt;br /&gt;
|The Emerald Dream...&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Hunter&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18361/the-greatest-race-of-hunters The Greatest Race of Hunters]&lt;br /&gt;
|The Greatest Race of &lt;br /&gt;
Hunters&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Mage&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18358/the-arcanists-cookbook The Arcanist&#039;s Cookbook]&lt;br /&gt;
|The Arcanist&#039;s Cookbook&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Paladin&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18359/the-light-and-how-to-swing-it The Light and How to Swing It]&lt;br /&gt;
|The Light and How To Swing It&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Priest&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18362/holy-bologna-what-the-light-wont-tell-you Holy Bologna: What the Light Won&#039;t Tell You]&lt;br /&gt;
|Holy Bologna: What the Light Won&#039;t Tell You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Rogue&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18356/garona-a-study-on-stealth-and-treachery Garona: A Study on Stealth and Treachery]&lt;br /&gt;
|Garona: A Study on Stealth and Treachery&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Shaman&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18363/frost-shock-and-you Frost Shock and You]&lt;br /&gt;
|Frost Shock and You&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warlock&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18360/harnessing-shadows Harnessing Shadows]&lt;br /&gt;
|Harnessing Shadows&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|-&lt;br /&gt;
|Warrior&lt;br /&gt;
|[https://www.wowhead.com/classic/item=18357/codex-of-defense Codex of Defense]&lt;br /&gt;
|Codex of Defense&lt;br /&gt;
|Royal Seal of Eldre&#039;Thalas&lt;br /&gt;
|}&lt;br /&gt;
Quel&#039;Serrar quest&lt;br /&gt;
&lt;br /&gt;
==== Librams ====&lt;br /&gt;
Libram of Focus&lt;br /&gt;
&lt;br /&gt;
Libram of Protection&lt;br /&gt;
&lt;br /&gt;
Libram of Rapidity&lt;br /&gt;
&lt;br /&gt;
==== Misc quests ====&lt;br /&gt;
Enchanted Thorium Blacksmithing Plans&lt;br /&gt;
&lt;br /&gt;
== Important NPCs ==&lt;br /&gt;
&amp;lt;Item Vendor&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;People you can turn Blue Books in&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;Person you deliver Books to&amp;gt;&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=General_Server_Information&amp;diff=1616</id>
		<title>General Server Information</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=General_Server_Information&amp;diff=1616"/>
		<updated>2025-02-11T11:56:27Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Removed Ironman buff giving stats&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== Mechanical Changes ===&lt;br /&gt;
* Player Stat Changes&lt;br /&gt;
** 3 Intellect = +1 spell power/healing&lt;br /&gt;
*Mob Debuff Limit raised to 40. &lt;br /&gt;
* Player Defense Skill Tables Adjusted&lt;br /&gt;
** Mob Critical Chance - 15% baseline&lt;br /&gt;
** Mob Defense Table - Compared to standard Vanilla, mobs are &#039;1 level higher&#039; as in they have 5 higher defense skill for comparable level.&lt;br /&gt;
** Player Hit Chance - Due to defense table, player hit chance is lowered and higher %s are necessary for 100% hit. &lt;br /&gt;
*** Weapon Skill/Glancing calculations adjusted. [Need more data]&lt;br /&gt;
* Spirit Regen Significantly buffed outside of combat, hp regen values buffed massively for all classes.&lt;br /&gt;
** Warriors, Rogues and Troll races can utilize this to limited effect in combat for healing.&lt;br /&gt;
* Fire/Environmental/Fall Damage Massively Increased - Approximately 3x higher damage for fall; fire/lava is now percentage based (dangerous even for tanky characters now)&lt;br /&gt;
* Most buffs of similar types now stack instead of only taking highest value buff [Eg - Un&#039;Goro Spirit Buff and Priest Divine Spirit now stack; Many elixirs now stack with similar buffs, etc]&lt;br /&gt;
* Creature Mobs that flee when low on health will now flee in a direction directly opposing the player [Allows limited control of where mobs will flee to by controlling placement of your character]&lt;br /&gt;
* Invisible walls added to many instance/world locations to prevent techniques enabling &#039;reset points&#039; which were commonly utilized for AoE/boosting exploits such as Mara/ZF/Scholo.  &lt;br /&gt;
&lt;br /&gt;
=== World Changes ===&lt;br /&gt;
&lt;br /&gt;
* Flight Master Changes&lt;br /&gt;
** &#039;&#039;&#039;[Removed]&#039;&#039;&#039; Ungoro Flightpath&lt;br /&gt;
** &#039;&#039;&#039;[Removed]&#039;&#039;&#039; Moonglade Flightpath&lt;br /&gt;
*** [One stop Darnassus/TB flight paths still available, druid only]&lt;br /&gt;
** &#039;&#039;&#039;[Removed]&#039;&#039;&#039; Western Plaguelands Alliance Flightpath&lt;br /&gt;
** &#039;&#039;&#039;[Removed]&#039;&#039;&#039; Searing Gorge Flightpath&lt;br /&gt;
** &#039;&#039;&#039;[Removed]&#039;&#039;&#039; Burning Steppes Flightpath&lt;br /&gt;
** &#039;&#039;&#039;[Removed]&#039;&#039;&#039; Kargath Flightpath&lt;br /&gt;
* Zeppelin &amp;amp; Boat Changes&lt;br /&gt;
** &#039;&#039;&#039;[New]&#039;&#039;&#039; Zeppelin from Thousand Needles -&amp;gt; Gromgol &lt;br /&gt;
** &#039;&#039;&#039;[Adjusted]&#039;&#039;&#039; Zeppelin from Orgrimmar -&amp;gt; STV, changed to Org -&amp;gt; Kargath&lt;br /&gt;
** &#039;&#039;&#039;[New]&#039;&#039;&#039; Boat for Feralas -&amp;gt; Darkshore/Auberdine&lt;br /&gt;
** &#039;&#039;&#039;[Adjusted]&#039;&#039;&#039; Boat Ratchet -&amp;gt; Booty Bay; changed to Ratchet -&amp;gt; Booty Bay -&amp;gt; Tanaris (Steamwheedle Port)&lt;br /&gt;
* Azshara Crater PvP Camps/Vendors added to Azshara &lt;br /&gt;
* EPL/Silithus/WPvP Changes&lt;br /&gt;
* Mob Updates&lt;br /&gt;
** SM Elites&lt;br /&gt;
** Jaednar Elites&lt;br /&gt;
** Dustwallow Marsh Ony Mobs still elite?&lt;br /&gt;
&lt;br /&gt;
=== Leveling Reworks ===&lt;br /&gt;
* Boosted Experience&lt;br /&gt;
** Kills: 2x&lt;br /&gt;
** Quests: 3x&lt;br /&gt;
** Elite &amp;amp; Dungeon Quests: 10x&lt;br /&gt;
** Rested Exp: Gained 5x Faster&lt;br /&gt;
* Cost Adjustments&lt;br /&gt;
** Skill costs before 40 halved (50%) gold/silver cost.&lt;br /&gt;
** Mount Costs Reworked&lt;br /&gt;
*** Mounts &lt;br /&gt;
**** 60% - 10g &lt;br /&gt;
**** 100% - 100g&lt;br /&gt;
*** Riding Training&lt;br /&gt;
**** Apprentice [60%] - Free&lt;br /&gt;
**** Journeyman [100%] - 900g &lt;br /&gt;
&lt;br /&gt;
=== Auction House Rework ===&lt;br /&gt;
* All Auction Houses are linked (Ally/Horde/Neutral = Shared)&lt;br /&gt;
* Deposit is 50% cost, and auctions last 2x as long (UI does not show updated values when posting however)&lt;br /&gt;
&lt;br /&gt;
===Mob Ability Updates===&lt;br /&gt;
&lt;br /&gt;
* Many mobs have buffed versions of their old abilities as well as new skills in their rosters such as stuns, snares, roots and silences/disarms, there is also scripting to utilize these unique effects and challenge players.&lt;br /&gt;
* [[Hunter Pets|Hunter Pet]] Skills Updated&lt;br /&gt;
&lt;br /&gt;
=== [[Items|Loot Reworks]] ===&lt;br /&gt;
* Vanilla+ Specific [https://github.com/hawaiisa/Atlas AtlasLoot+] to see where new loot drops + new reputation rewards: &amp;lt;nowiki&amp;gt;https://github.com/hawaiisa/Atlas&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
* Profession Loot Massively Overhauled - Especially early game loot to provide effective weapons and gear in lieu of dungeons and elite rewards or AH gear.&lt;br /&gt;
* Low Level Dungeon and Class Quest loot buffed in many instances, many formerly useless items have been changed to be far more powerful or better itemized. &lt;br /&gt;
* Endgame Reputation Rewards buffed&lt;br /&gt;
* T1 sets operate on token system which requires reputation and crafting with materials within BRD as opposed to directly dropping from MC.  &lt;br /&gt;
&lt;br /&gt;
=== Limited Cross-Faction ===&lt;br /&gt;
* Enabled &lt;br /&gt;
** All chat functions and /world global server channel&lt;br /&gt;
** Trade functions (Proximity/Auction House)&lt;br /&gt;
** Party/Raid Invites [[Cross Faction Raiding|[See: Cross-Faction Raiding]]]&lt;br /&gt;
* Disabled&lt;br /&gt;
** Mail Functions&lt;br /&gt;
** Guild Invite&lt;br /&gt;
** /who [Only displays players from your faction, use .server info to see server population and uptime.]&lt;br /&gt;
** Battlegrounds&lt;br /&gt;
=== Talent/Hybrid Spec Revamps ===&lt;br /&gt;
* New Roles and Tiersets for [[Classes]]&lt;br /&gt;
* Hybrid DPS/Tank Specs buffed to be inline with pure DPS/Tank Classes (Eg - Prot Paladin/Enh Shaman/Feral Druid are viable raid tanks)&lt;br /&gt;
* Talent Respec costs reworked&lt;br /&gt;
** 1g floor; 5g cap&lt;br /&gt;
** Much faster decay (1 week full decay from 5g to 1g)&lt;br /&gt;
=== Ironman System ===&lt;br /&gt;
* Ironman&#039;s Resolve&lt;br /&gt;
** Active from 2-59, cannot be clicked off or removed EXCEPT by death. &lt;br /&gt;
*** &#039;&#039;&#039;Note:&#039;&#039;&#039; There is a separate buff at level 1 that does not provide any game effects, this may be right-clicked off if you do not wish to attempt the challenge and risk humiliation.&lt;br /&gt;
** Removed on &#039;&#039;&#039;ANY&#039;&#039;&#039; PvE death&lt;br /&gt;
*** &#039;&#039;Exclusions&#039;&#039;&lt;br /&gt;
**** Deaths before level 10&lt;br /&gt;
**** Death via PvP &lt;br /&gt;
***** [Beware gankers regardless! They can chainpull mobs or weaken/stun/disable you to grief, if a mob gets killing blow Ironman buff is lost.]&lt;br /&gt;
**** Deaths to environment [eg: Fall/Fire/Lava]&lt;br /&gt;
* Rewards: &lt;br /&gt;
** Ironman&#039;s Medallion (/flex for a cosmetic model size increase a la firewater elixir)&lt;br /&gt;
** Serverwide announcement of name/race/class&lt;br /&gt;
** 15 minute invulnerability buff upon hitting 60&lt;br /&gt;
* [[Hall of Fame|Confirmed Ironman Characters List]]&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=User_Interface&amp;diff=1615</id>
		<title>User Interface</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=User_Interface&amp;diff=1615"/>
		<updated>2025-02-11T11:52:13Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Sorted list and added V+ modified addons&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Vanilla Plus Github Addon Discussion: &amp;lt;nowiki&amp;gt;https://github.com/KrekoG/vanillaplus#addons-maintained-by-the-community&amp;lt;/nowiki&amp;gt;&lt;br /&gt;
&lt;br /&gt;
=== General Addons: ===&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/hawaiisa/Atlas AtlasLoot (V+ Updated Dungeon/Raid/Profession Tables)]&lt;br /&gt;
* [https://github.com/lokiy999/BetterCharacterStats BetterCharacterStats (w/ V+ stat values/conversions)] ([[Combat Formula Adjustments|See: Mechanical Changes]])&lt;br /&gt;
* [https://github.com/lokiy999/_LP-VanillaPlus Lazypig V+]&lt;br /&gt;
* [https://github.com/GoodOldWoW/MonkeySpeed MonkeySpeed] Displays your current movespeed as xxx%&lt;br /&gt;
** Useful for testing and confirming movespeed effects and how they stack/coincide&lt;br /&gt;
*[https://github.com/hjorim/PallyPower-1.12.1-VanillaPlus Pallypower V+]&lt;br /&gt;
*[https://github.com/hawaiisa/pfQuest-vanillaplus pfQuest with V+ fixes]&lt;br /&gt;
** [pfQuest is recommended over Questie, many Questie features will break on this server]&lt;br /&gt;
* [https://github.com/cgoodwin117/pfUI-vanillaplus pfUI with V+ fixes]&lt;br /&gt;
* [https://github.com/KrekoG/SpecialTalentUI Special Talent UI Revamp]&lt;br /&gt;
** Allows previewing builds and can save presets for role swaps (Can function as ingame talent calculator)&lt;br /&gt;
&lt;br /&gt;
==== Vanilla+ Class/Role Specific Tools: ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/hawaiisa/StarfallStunTimer Druid Starfall Stun CD Timer] [[Druid|(See: Druid Class Changes)]]: https://github.com/hawaiisa/StarfallStunTimer&lt;br /&gt;
* [https://github.com/KrekoG/BloodlustHelper Shaman Bloodlust Buff Tracking UI] [[Shaman|(See: Shaman Class Changes):]] https://github.com/KrekoG/BloodlustHelper&lt;br /&gt;
&lt;br /&gt;
=== Macros: ===&lt;br /&gt;
- 1.12 Macro Guides&lt;br /&gt;
&lt;br /&gt;
- Super Macro Guides/Links&lt;br /&gt;
&lt;br /&gt;
- (SuperMacro/ElvUI/Large 1.12 Projects?)&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
	<entry>
		<id>https://vanilla-plus.wiki/index.php?title=User_Interface&amp;diff=1614</id>
		<title>User Interface</title>
		<link rel="alternate" type="text/html" href="https://vanilla-plus.wiki/index.php?title=User_Interface&amp;diff=1614"/>
		<updated>2025-02-11T11:29:06Z</updated>

		<summary type="html">&lt;p&gt;Lokiy: Changed BCS link to the V+ edited one&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;=== General Addons: ===&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/KrekoG/vanillaplus#addons-maintained-by-the-community Vanilla Plus Github Addon Discussion: https://github.com/KrekoG/vanillaplus#addons-maintained-by-the-community]&lt;br /&gt;
* [https://github.com/hawaiisa/Atlas AtlasLoot (V+ Updated Dungeon/Raid/Profession Tables): https://github.com/hawaiisa/Atlas]&lt;br /&gt;
* [https://github.com/cgoodwin117/pfUI-vanillaplus pfUI with V+ fixes: https://github.com/cgoodwin117/pfUI-vanillaplus]&lt;br /&gt;
* [https://github.com/hawaiisa/pfQuest-vanillaplus pfQuest with V+ fixes: https://github.com/hawaiisa/pfQuest-vanillaplus]&lt;br /&gt;
** [pfQuest is far recommended over Questie, many Questie features will break on this server]&lt;br /&gt;
* [https://github.com/lokiy999/BetterCharacterStats BetterCharacterStats w/ V+ stat values/conversions] ([[Combat Formula Adjustments|See: Mechanical Changes]])&lt;br /&gt;
* [https://github.com/KrekoG/SpecialTalentUI Special Talent UI Revamp: https://github.com/KrekoG/SpecialTalentUI]&lt;br /&gt;
** Allows previewing builds and can save presets for role swaps (Can function as ingame talent calculator)&lt;br /&gt;
* [https://github.com/GoodOldWoW/MonkeySpeed MonkeySpeed: https://github.com/GoodOldWoW/MonkeySpeed]&lt;br /&gt;
** Displays your current movespeed as xxx%. (Very useful for testing and confirming movespeed effects and how they stack/coincide eg. Druid/Shaman forms under snares/movespeed buffs)&lt;br /&gt;
* (SuperMacro/ElvUI/Large 1.12 Projects?)&lt;br /&gt;
&lt;br /&gt;
==== Vanilla+ Class/Role Specific Tools: ====&lt;br /&gt;
&lt;br /&gt;
* [https://github.com/hawaiisa/StarfallStunTimer Druid Starfall Stun CD Timer] [[Druid|(See: Druid Class Changes)]]: https://github.com/hawaiisa/StarfallStunTimer&lt;br /&gt;
* [https://github.com/KrekoG/BloodlustHelper Shaman Bloodlust Buff Tracking UI] [[Shaman|(See: Shaman Class Changes):]] https://github.com/KrekoG/BloodlustHelper&lt;br /&gt;
&lt;br /&gt;
=== Macros: ===&lt;br /&gt;
- 1.12 Macro Guides&lt;br /&gt;
&lt;br /&gt;
- Super Macro Guides/Links&lt;/div&gt;</summary>
		<author><name>Lokiy</name></author>
	</entry>
</feed>