<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://wiki.uooutlands.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skrypt</id>
	<title>UO Outlands Wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="http://wiki.uooutlands.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Skrypt"/>
	<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/Special:Contributions/Skrypt"/>
	<updated>2026-06-03T12:04:14Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.41.1</generator>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Razor_Scripting&amp;diff=11981</id>
		<title>Razor Scripting</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Razor_Scripting&amp;diff=11981"/>
		<updated>2021-08-06T00:41:31Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* targetexists */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;The Razor assistant distributed with the Outlands client is a fork of Razor Community Edition. Outlands has additionally extended that scripting engine with the following features.&lt;br /&gt;
&lt;br /&gt;
==Modified Commands and Expressions==&lt;br /&gt;
&lt;br /&gt;
Several commands and expressions that search by type have been greatly expanded:&lt;br /&gt;
&lt;br /&gt;
===dclicktype===&lt;br /&gt;
  dclicktype (&#039;name&#039;) OR (&#039;graphic&#039;) [source] [hue] [quantity] [range]&lt;br /&gt;
===findtype===&lt;br /&gt;
  findtype (&#039;name&#039;) OR (&#039;graphic&#039;) [source] [hue] [quantity] [range]&lt;br /&gt;
===targettype===&lt;br /&gt;
  targettype (&#039;name&#039;) OR (&#039;graphic&#039;) [source] [hue] [quantity] [range]&lt;br /&gt;
===lifttype===&lt;br /&gt;
  lifttype (&#039;name&#039;) OR (&#039;graphic&#039;) [amount] [src] [hue]&lt;br /&gt;
&lt;br /&gt;
The hue allows limiting by hue. The source may be the serial of a specific container, &#039;self&#039; for equipped items, or &#039;ground&#039;. The quantity is the minimum quantity, and the range is the maximum range from the player.&lt;br /&gt;
The lifttype expression is further limited to only operate on &#039;backpack&#039;, &#039;self&#039;, or &#039;ground&#039; sources.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==New Aliases==&lt;br /&gt;
&lt;br /&gt;
===ground===&lt;br /&gt;
The &#039;ground&#039; alias is now available. This is useful in the expanded targeting commands as the &amp;quot;source&amp;quot; parameter.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==New Expressions==&lt;br /&gt;
&lt;br /&gt;
===find===&lt;br /&gt;
Searching based on a serial number is now possible with the find expression:&lt;br /&gt;
&lt;br /&gt;
  if find (serial) [src] [hue] [qty] [range]&lt;br /&gt;
&lt;br /&gt;
The parameters work exactly like the findtype command.&lt;br /&gt;
&lt;br /&gt;
===findlayer===&lt;br /&gt;
Searching a character for equipped items is now possible:&lt;br /&gt;
&lt;br /&gt;
  if findlayer self gloves as mygloves&lt;br /&gt;
    overhead &#039;Wearing gloves!&#039;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
The valid layers are:&lt;br /&gt;
  righthand&lt;br /&gt;
  lefthand&lt;br /&gt;
  shoes&lt;br /&gt;
  pants&lt;br /&gt;
  shirt&lt;br /&gt;
  head&lt;br /&gt;
  gloves&lt;br /&gt;
  ring&lt;br /&gt;
  talisman&lt;br /&gt;
  neck&lt;br /&gt;
  hair&lt;br /&gt;
  waist&lt;br /&gt;
  innertorso&lt;br /&gt;
  bracelet&lt;br /&gt;
  face&lt;br /&gt;
  facialhair&lt;br /&gt;
  middletorso&lt;br /&gt;
  earrings&lt;br /&gt;
  arms&lt;br /&gt;
  cloak&lt;br /&gt;
  backpack&lt;br /&gt;
  outertorso&lt;br /&gt;
  outerlegs&lt;br /&gt;
  innerlegs&lt;br /&gt;
&lt;br /&gt;
===targetexists===&lt;br /&gt;
An expression to test whether the client currently has a target cursor up:&lt;br /&gt;
&lt;br /&gt;
  if targetexists [&#039;any&#039;/&#039;beneficial&#039;/&#039;harmful&#039;/&#039;neutral&#039;]&lt;br /&gt;
&lt;br /&gt;
===followers===&lt;br /&gt;
An expression to count your current followers:&lt;br /&gt;
&lt;br /&gt;
  if followers &amp;lt; 5&lt;br /&gt;
    overhead &amp;quot;Can still tame stuff!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===hue===&lt;br /&gt;
An expression to get the hue of an item:&lt;br /&gt;
&lt;br /&gt;
  if hue someObject = 0x1809&lt;br /&gt;
    overhead &amp;quot;Found hue of my item!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===name===&lt;br /&gt;
An expression to get your current character&#039;s name:&lt;br /&gt;
&lt;br /&gt;
  if name = &#039;MyName&#039;&lt;br /&gt;
    overhead &amp;quot;It&#039;s me!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===paralyzed===&lt;br /&gt;
An expression to test if your character is paralyzed:&lt;br /&gt;
&lt;br /&gt;
  if paralyzed&lt;br /&gt;
    overhead &amp;quot;Can&#039;t move!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===blessed===&lt;br /&gt;
An expression to test if your character is blessed (yellow health bar):&lt;br /&gt;
&lt;br /&gt;
  if blessed&lt;br /&gt;
    overhead &amp;quot;I&#039;m gonna live forever!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===warmode===&lt;br /&gt;
An expression to test if your character is in warmode:&lt;br /&gt;
&lt;br /&gt;
  if warmode&lt;br /&gt;
    overhead &amp;quot;Ready to attack!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===noto===&lt;br /&gt;
An expression to check any mobile&#039;s notoriety:&lt;br /&gt;
&lt;br /&gt;
  if noto some_Mobile = hostile&lt;br /&gt;
    overhead &amp;quot;Safe to attack!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
The valid notorieties are&lt;br /&gt;
  innocent (blue)&lt;br /&gt;
  friend (green)&lt;br /&gt;
  hostile (gray)&lt;br /&gt;
  criminal (gray)&lt;br /&gt;
  enemy (orange)&lt;br /&gt;
  murderer (red)&lt;br /&gt;
  invulnerable (yellow)&lt;br /&gt;
&lt;br /&gt;
===dead===&lt;br /&gt;
An expression to check if a mobile is dead:&lt;br /&gt;
&lt;br /&gt;
  if dead someMobile&lt;br /&gt;
    overhead &amp;quot;He&#039;s dead, Jim!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===maxweight===&lt;br /&gt;
&lt;br /&gt;
   if maxweight &amp;gt; 400&lt;br /&gt;
      overhead &amp;quot;I have a lot of strength&amp;quot;&lt;br /&gt;
   endif&lt;br /&gt;
&lt;br /&gt;
===diffweight===&lt;br /&gt;
&lt;br /&gt;
  if diffweight &amp;gt; 20&lt;br /&gt;
    overhead &amp;quot;I can lift 20 more stone&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===diffhits===&lt;br /&gt;
&lt;br /&gt;
  if diffhits &amp;gt; 40&lt;br /&gt;
    overhead &amp;quot;I need a heal!&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===diffmana===&lt;br /&gt;
&lt;br /&gt;
  if diffmana &amp;gt; 40&lt;br /&gt;
    useskill Meditation&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===diffstam===&lt;br /&gt;
&lt;br /&gt;
  if diffstam &amp;gt; 30&lt;br /&gt;
    overhead &amp;quot;Need stamina&amp;quot;&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===counttype===&lt;br /&gt;
&lt;br /&gt;
  if counttype (name or graphic) [src] [hue] [range]&lt;br /&gt;
&lt;br /&gt;
===gumpexists===&lt;br /&gt;
&lt;br /&gt;
  if gumpexists (gumpId/&#039;any&#039;)&lt;br /&gt;
&lt;br /&gt;
Returns true if the gump exists.&lt;br /&gt;
&lt;br /&gt;
===ingump===&lt;br /&gt;
&lt;br /&gt;
  if ingump (text) [gumpId/&#039;any&#039;]&lt;br /&gt;
&lt;br /&gt;
Look for text in the given gump.&lt;br /&gt;
&lt;br /&gt;
==New Commands==&lt;br /&gt;
&lt;br /&gt;
===setvar===&lt;br /&gt;
The setvar command has been modified on Outlands to support a wider set of use cases. The optional second parameter is now the serial of the variable. If provided, you won&#039;t be prompted with a target cursor.&lt;br /&gt;
&lt;br /&gt;
  setvar my_name 0x123&lt;br /&gt;
&lt;br /&gt;
This can be used for graphic IDs, hues, serials, names, and more. By default, this creates a persistent variable that will remain even across restarts of the application. To make the variable only live for as long as the current program run, append the &#039;!&#039; operator. The variable will not appear in the Razor variables list, but will still be global and usable from any script while Razor is running.&lt;br /&gt;
&lt;br /&gt;
  setvar! my_name 0x123&lt;br /&gt;
&lt;br /&gt;
===unsetvar===&lt;br /&gt;
Additionally, a command to unset variables has been added. It supports the same modifiers as setvar:&lt;br /&gt;
&lt;br /&gt;
  unsetvar my_name&lt;br /&gt;
&lt;br /&gt;
===ignore/clearignore===&lt;br /&gt;
An ignore list has been added to avoid finding objects when using the various search commands:&lt;br /&gt;
&lt;br /&gt;
  ignore (serial)&lt;br /&gt;
  clearignore&lt;br /&gt;
&lt;br /&gt;
This also supports the same operators as setvar for controlling the scope of the ignore list.&lt;br /&gt;
 &lt;br /&gt;
===warmode=== &lt;br /&gt;
A command to explicitly set warmode state has been added:&lt;br /&gt;
&lt;br /&gt;
  warmode (&#039;on&#039; / &#039;off&#039;)&lt;br /&gt;
&lt;br /&gt;
===getlabel===&lt;br /&gt;
A command to get an item&#039;s label - the text you see when single clicking it - has been added.&lt;br /&gt;
&lt;br /&gt;
  getlabel (serial) (name)&lt;br /&gt;
&lt;br /&gt;
This will fetch the label for the item identified by the serial and create a new variable with your choice of name that holds the text.&lt;br /&gt;
&lt;br /&gt;
  getlabel backpack my_label&lt;br /&gt;
  overhead my_label&lt;br /&gt;
&lt;br /&gt;
===rename===&lt;br /&gt;
A command to rename followers has been added:&lt;br /&gt;
&lt;br /&gt;
  rename myFollower Bob&lt;br /&gt;
&lt;br /&gt;
===setskill===&lt;br /&gt;
A command to set skill gain locks has been added:&lt;br /&gt;
&lt;br /&gt;
  setskill Blacksmithing up&lt;br /&gt;
&lt;br /&gt;
The valid choices are up, down, or locked.&lt;br /&gt;
&lt;br /&gt;
===waitforgump===&lt;br /&gt;
&lt;br /&gt;
  waitforgump [gumpId]&lt;br /&gt;
&lt;br /&gt;
Wait for a gump to appear. If a gump ID is provided, wait for that particular gump. Otherwise, wait for the next gump.&lt;br /&gt;
&lt;br /&gt;
===gumpresponse===&lt;br /&gt;
&lt;br /&gt;
  gumpresponse (buttonId) [gumpId]&lt;br /&gt;
&lt;br /&gt;
Press the given button on the give gump (or the last gump that opened)&lt;br /&gt;
&lt;br /&gt;
===gumpclose===&lt;br /&gt;
&lt;br /&gt;
  gumpclose [gumpId]&lt;br /&gt;
&lt;br /&gt;
Close the given gump or the last gump that opened if no gumpId is specified.&lt;br /&gt;
&lt;br /&gt;
==New Operators==&lt;br /&gt;
&lt;br /&gt;
===as===&lt;br /&gt;
There is now an &#039;as&#039; operator to capture the result of expressions as an alias. This is particularly useful for the `findtype` expression as follows&lt;br /&gt;
&lt;br /&gt;
  if findtype dagger as mydagger&lt;br /&gt;
    dclick mydagger&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
===in===&lt;br /&gt;
There is additionally an &#039;in&#039; operator that can be used to check whether one string is a substring of another:&lt;br /&gt;
&lt;br /&gt;
  if this in thisthatandtheother&lt;br /&gt;
    overhead yes&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
These are particularly powerful when combined to sort through items:&lt;br /&gt;
&lt;br /&gt;
  if findtype dagger as mydagger&lt;br /&gt;
    getlabel mydagger daggerlabel&lt;br /&gt;
    if blessed in daggerlabel&lt;br /&gt;
      overhead &amp;quot;Found newbie dagger&amp;quot;&lt;br /&gt;
    endif&lt;br /&gt;
  endif&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Lists==&lt;br /&gt;
List support includes the following commands:&lt;br /&gt;
&lt;br /&gt;
===createlist===&lt;br /&gt;
 createlist (&#039;list name&#039;)&lt;br /&gt;
&lt;br /&gt;
Create a new list&lt;br /&gt;
&lt;br /&gt;
===clearlist===&lt;br /&gt;
 clearlist (&#039;list name&#039;)&lt;br /&gt;
&lt;br /&gt;
Clear an existing list&lt;br /&gt;
&lt;br /&gt;
===removelist===&lt;br /&gt;
 removelist (&#039;list name&#039;)&lt;br /&gt;
&lt;br /&gt;
Delete a list&lt;br /&gt;
&lt;br /&gt;
===pushlist===&lt;br /&gt;
 pushlist (&#039;list name&#039;) (&#039;element value&#039;) [&#039;front&#039;/&#039;back&#039;]&lt;br /&gt;
&lt;br /&gt;
Add an item to the front or back of the list&lt;br /&gt;
&lt;br /&gt;
===poplist===&lt;br /&gt;
 poplist (&#039;list name&#039;) (&#039;element value&#039;/&#039;front&#039;/&#039;back&#039;)&lt;br /&gt;
&lt;br /&gt;
Remove an item from the front of back of the list&lt;br /&gt;
&lt;br /&gt;
===listexists===&lt;br /&gt;
Additionally, the following list-related expressions have been added. These may be used within &amp;lt;code&amp;gt;if&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;while&amp;lt;/code&amp;gt; statements.&lt;br /&gt;
 listexists (&#039;list name&#039;)&lt;br /&gt;
&lt;br /&gt;
True if the list exists&lt;br /&gt;
&lt;br /&gt;
===list===&lt;br /&gt;
 list (list name) (operator) (value)&lt;br /&gt;
&lt;br /&gt;
Compare the length of the list to an integer&lt;br /&gt;
&lt;br /&gt;
===inlist===&lt;br /&gt;
 inlist (list name) (element)&lt;br /&gt;
&lt;br /&gt;
Test if an element is in a list.&lt;br /&gt;
&lt;br /&gt;
===Iterating lists===&lt;br /&gt;
Finally, &amp;lt;code&amp;gt;for&amp;lt;/code&amp;gt; and &amp;lt;code&amp;gt;foreach&amp;lt;/code&amp;gt; loops can be used for iteration as follows:&lt;br /&gt;
&lt;br /&gt;
 for 10&lt;br /&gt;
   say &#039;hello&#039;&lt;br /&gt;
 endfor&lt;br /&gt;
&lt;br /&gt;
This will iterate exactly 10 times.&lt;br /&gt;
&lt;br /&gt;
 foreach x in my_list&lt;br /&gt;
   say x&lt;br /&gt;
 endfor&lt;br /&gt;
&lt;br /&gt;
This will iterate the elements in my_list, assigning the variable &#039;x&#039; to the next element on each iteration.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Timers==&lt;br /&gt;
Timers represent background timers that run while the rest of your script executes. All units are in milliseconds. They can be queried to check how much time has elapsed since they were started, or reset back to an earlier count.&lt;br /&gt;
&lt;br /&gt;
The following commands for working with timers have been added:&lt;br /&gt;
&lt;br /&gt;
===createtimer===&lt;br /&gt;
 createtimer (timer name)&lt;br /&gt;
&lt;br /&gt;
Create a new timer, starting at 0.&lt;br /&gt;
&lt;br /&gt;
===removetimer===&lt;br /&gt;
 removetimer (timer name)&lt;br /&gt;
&lt;br /&gt;
Destroy an existing timer.&lt;br /&gt;
&lt;br /&gt;
===settimer===&lt;br /&gt;
 settimer (timer name) (value)&lt;br /&gt;
&lt;br /&gt;
Set a timer to the given value. It will begin counting up from the given value immediately.&lt;br /&gt;
&lt;br /&gt;
Additionally, two expressions have been added for timers:&lt;br /&gt;
&lt;br /&gt;
===timer===&lt;br /&gt;
 timer (&#039;timer name&#039;) (operator) (value)&lt;br /&gt;
&lt;br /&gt;
Compare the current value of the timer (the time elapsed since it was started in milliseconds) to a given value&lt;br /&gt;
&lt;br /&gt;
===timerexists===&lt;br /&gt;
 timerexists (&#039;timer name&#039;)&lt;br /&gt;
&lt;br /&gt;
Check if a timer exists&lt;br /&gt;
&lt;br /&gt;
Example:&lt;br /&gt;
&lt;br /&gt;
 // Create a new timer&lt;br /&gt;
 if not timerexists &#039;sample&#039;&lt;br /&gt;
  createtimer &#039;sample&#039;&lt;br /&gt;
 endif&lt;br /&gt;
 // Reset every 10 seconds&lt;br /&gt;
 if timer &#039;sample&#039; &amp;gt; 10000&lt;br /&gt;
  settimer &#039;sample&#039; 0&lt;br /&gt;
 endif&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Loot&amp;diff=10936</id>
		<title>Loot</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Loot&amp;diff=10936"/>
		<updated>2021-04-28T06:06:25Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Boss &amp;amp; Mini Loot */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:PvM]][[Category:Bosses]]&lt;br /&gt;
==Summary==&lt;br /&gt;
Loot items that drop can be divided into regular loot, special loot and rare loot. Various bonuses can affect these categories separately such as:&lt;br /&gt;
&lt;br /&gt;
* [[Region Bonus Board|Region Bonus]] (Gold, Special Loot)&lt;br /&gt;
* [[Guild Prestige|Guild Favor]] (Gold, Special Loot, Rare Loot)&lt;br /&gt;
* Mastery Chain (Gold, Special Loot, Rare Loot)&lt;br /&gt;
* Fortune Aspect (Gold, Special Loot, Rare Loot)&lt;br /&gt;
* Event Bonus&lt;br /&gt;
&lt;br /&gt;
{{Loot}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Bonuses to Loot==&lt;br /&gt;
* Loot amounts for Gold, Special Items, and Rare Items for NPC Ship Holds can be increased by Mastery Chains, Fortune Aspect, and Guild Favors, but will only be increased by a player who is the Captain of a player ship attacking the NPC ship (multiple player ship captains can increase loot similarly to how multiple players can increase Creature Loot)&lt;br /&gt;
* Loot amounts for Gold, Special Items, and Rare Items for Salvage Crates can be increased by Mastery Chains, Fortune Aspect, and Guild Favors, but will only be affected by the player who fished up the creature that generated the Salvage Crate&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Boss &amp;amp; Mini Loot==&lt;br /&gt;
* Loot items that boss level creatures drop are similarly divided into regular loot, special loot and rare loot.&lt;br /&gt;
* However certain items are set to drop exact amounts every time, bonuses will not affect these exact amount items.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!style=&amp;quot;text-align: center; colspan=&amp;quot;8&amp;quot;|BOSSES&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
!&lt;br /&gt;
!Regular Loot&lt;br /&gt;
!&lt;br /&gt;
!Special Loot&lt;br /&gt;
!&lt;br /&gt;
!Rare Loot&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|60K+&lt;br /&gt;
|[[File:lootgold.png|top|link=Gold]]&lt;br /&gt;
|6x&lt;br /&gt;
|[[File:lootresearchmaterials.png|top|link=Lore System#Research Materials|Research Materials]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootmcd.png|top|link=Mastercrafting Diagram]]&lt;br /&gt;
|1x&lt;br /&gt;
|Boss Token&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:loottmap.png|top|link=Treasure Hunting]]&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootskillmasteryscroll.png|top|link=]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootskillorb.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|Boss Rare&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootresourcemap.png|top|link=Resource Maps]]&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootaspectcore.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcollectablecards.png|top|link=Collectable Cards]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|15x&lt;br /&gt;
|[[File:lootmagicitem.png|top|link=]] [[File:lootwands.png|top|link=]]&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootaspectextract.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdungeonlantern.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootgems.png|top|link=]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootaspectphy.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootrarecloth.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootreagent.png|top|link=]] [[File:lootspellscroll.png|top|link=]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootarcanerune.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootfootwear.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootarcanescroll.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyeablecarpettiles.png|top|link=Carpet Tiles]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootplantchem.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcarpetdye.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootplantseed.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootspellhuedeed.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyes2.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;text-align: center; colspan=&amp;quot;8&amp;quot;|MINI-BOSSES&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
!&lt;br /&gt;
!Regular Loot&lt;br /&gt;
!&lt;br /&gt;
!Special Loot&lt;br /&gt;
!&lt;br /&gt;
!Rare Loot&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|20K+&lt;br /&gt;
|[[File:lootgold.png|top|link=Gold]]&lt;br /&gt;
|2x&lt;br /&gt;
|[[File:lootresearchmaterials.png|top|link=Lore System#Research Materials|Research Materials]]&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootmcd.png|top|link=Mastercrafting Diagram]]&lt;br /&gt;
|50%&lt;br /&gt;
|Boss Token&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:loottmap.png|top|link=Treasure Hunting]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootskillmasteryscroll.png|top|link=]]&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootskillorb.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|Mini-Boss Rare&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootresourcemap.png|top|link=Resource Maps]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootaspectcore.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcollectablecards.png|top|link=Collectable Cards]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|5x&lt;br /&gt;
|[[File:lootmagicitem.png|top|link=]] [[File:lootwands.png|top|link=]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootaspectextract.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdungeonlantern.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootgems.png|top|link=]]&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootaspectphy.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootrarecloth.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootreagent.png|top|link=]] [[File:lootspellscroll.png|top|link=]]&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootarcanerune.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootfootwear.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootarcanescroll.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyeablecarpettiles.png|top|link=Carpet Tiles]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootplantchem.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcarpetdye.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootplantseed.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootspellhuedeed.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyes2.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Progressive Loot==&lt;br /&gt;
* Dungeon and Wilderness creatures now gain a Progressive Loot bonus of +5% per hour for each hour they are alive up to a maximum of +250%&lt;br /&gt;
* Progressive Loot Bonuses increase gold drops as well as adjust the % chance to encounter Special and Rare Loot (and will stack with all other available loot bonus)&lt;br /&gt;
* Ocean Creatures and New Player Dungeon creatures are exempt from Progressive Loot bonuses&lt;br /&gt;
* For example, a Creature that is normally worth 100 gold and has been alive for 10 hours will now be worth 150 gold&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Loot&amp;diff=6375</id>
		<title>Loot</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Loot&amp;diff=6375"/>
		<updated>2020-06-13T07:16:03Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:PvM]]&lt;br /&gt;
==Creature Loot==&lt;br /&gt;
Loot items that creatures drop can be divided into regular loot, special loot and rare loot.&lt;br /&gt;
&lt;br /&gt;
Various bonuses can affect these categories separately such as:&lt;br /&gt;
&lt;br /&gt;
* [[Region Bonus Board|Region Bonus]] (Gold, Special Loot)&lt;br /&gt;
* [[Guild Prestige|Guild Favor]] (Gold, Special Loot, Rare Loot)&lt;br /&gt;
* Mastery Chain (Gold, Special Loot, Rare Loot)&lt;br /&gt;
* Fortune Aspect (Gold, Loot Items)&lt;br /&gt;
* Event Bonus&lt;br /&gt;
&lt;br /&gt;
{{Loot}}&lt;br /&gt;
&lt;br /&gt;
==Boss &amp;amp; Mini Loot==&lt;br /&gt;
Loot items that boss level creatures drop are similarly divided into regular loot, special loot and rare loot.&lt;br /&gt;
&lt;br /&gt;
However certain items are set to drop exact amounts every time, bonuses will not affect these exact amount items.&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
!style=&amp;quot;text-align: center; colspan=&amp;quot;8&amp;quot;|BOSSES&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
!&lt;br /&gt;
!Regular Loot&lt;br /&gt;
!&lt;br /&gt;
!Special Loot&lt;br /&gt;
!&lt;br /&gt;
!Rare Loot&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|60K+&lt;br /&gt;
|[[File:lootgold.png|top|link=Gold]]&lt;br /&gt;
|6x&lt;br /&gt;
|[[File:lootresearchmaterials.png|top|link=Lore System#Research Materials|Research Materials]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootmcd.png|top|link=Mastercrafting Diagram]]&lt;br /&gt;
|1x&lt;br /&gt;
|Boss Token&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:loottmap.png|top|link=Treasure Hunting]]&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootskillmasteryscroll.png|top|link=]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootskillorb.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|Boss Rare&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootresourcemap.png|top|link=Resource Maps]]&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootaspectcore.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcollectablecards.png|top|link=Collectable Cards]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|15x&lt;br /&gt;
|[[File:lootmagicitem.png|top|link=]] [[File:lootwands.png|top|link=]]&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootaspectextract.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdungeonlantern.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootgems.png|top|link=]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootaspectphy.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootrarecloth.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootreagent.png|top|link=]] [[File:lootspellscroll.png|top|link=]]&lt;br /&gt;
|6x&lt;br /&gt;
|[[File:lootarcanerune.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootfootwear.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|9x&lt;br /&gt;
|[[File:lootarcanescroll.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyeablecarpettiles.png|top|link=Carpet Tiles]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootplantchem.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcarpetdye.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootplantseed.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootspellhuedeed.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyes2.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|-&lt;br /&gt;
!style=&amp;quot;text-align: center; colspan=&amp;quot;8&amp;quot;|MINI-BOSSES&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
!&lt;br /&gt;
!Regular Loot&lt;br /&gt;
!&lt;br /&gt;
!Special Loot&lt;br /&gt;
!&lt;br /&gt;
!Rare Loot&lt;br /&gt;
!&lt;br /&gt;
!&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|20K+&lt;br /&gt;
|[[File:lootgold.png|top|link=Gold]]&lt;br /&gt;
|2x&lt;br /&gt;
|[[File:lootresearchmaterials.png|top|link=Lore System#Research Materials|Research Materials]]&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootmcd.png|top|link=Mastercrafting Diagram]]&lt;br /&gt;
|50%&lt;br /&gt;
|Boss Token&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:loottmap.png|top|link=Treasure Hunting]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootskillmasteryscroll.png|top|link=]]&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootskillorb.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|Mini-Boss Rare&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootresourcemap.png|top|link=Resource Maps]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootaspectcore.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcollectablecards.png|top|link=Collectable Cards]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|5x&lt;br /&gt;
|[[File:lootmagicitem.png|top|link=]] [[File:lootwands.png|top|link=]]&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootaspectextract.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdungeonlantern.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootgems.png|top|link=]]&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootaspectphy.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootrarecloth.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|???&lt;br /&gt;
|[[File:lootreagent.png|top|link=]] [[File:lootspellscroll.png|top|link=]]&lt;br /&gt;
|2x&lt;br /&gt;
|[[File:lootarcanerune.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootfootwear.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|3x&lt;br /&gt;
|[[File:lootarcanescroll.png|top|link=]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyeablecarpettiles.png|top|link=Carpet Tiles]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootplantchem.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootcarpetdye.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|1x&lt;br /&gt;
|[[File:lootplantseed.png|top|link=Plant Growing]]&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootspellhuedeed.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|%&lt;br /&gt;
|[[File:lootdyes2.png|top|link=]]&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Template:Loot&amp;diff=6374</id>
		<title>Template:Loot</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Template:Loot&amp;diff=6374"/>
		<updated>2020-06-13T07:11:41Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
! Regular Loot&lt;br /&gt;
! Special Loot&lt;br /&gt;
! Rare Loot&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootgold.png|top|link=Gold]]&lt;br /&gt;
[[Gold]]&lt;br /&gt;
|[[File:lootresearchmaterials.png|top|link=Lore System#Research Materials|Research Materials]]&lt;br /&gt;
[[Lore System#Research Materials|Research Materials]]&lt;br /&gt;
|[[File:lootmcd.png|top|link=Mastercrafting Diagram]]&lt;br /&gt;
[[Mastercrafting_Diagram|Mastercrafting Diagram]]&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootdoubloons.png|top|link=Doubloons]]&lt;br /&gt;
[[Doubloons]]&lt;br /&gt;
|[[File:lootskillmasteryscroll.png|top|link=]]&lt;br /&gt;
Skill Mastery Scroll&lt;br /&gt;
|[[File:lootskillorb.png|top|link=]]&lt;br /&gt;
Skill Mastery Orb&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:loottmap.png|top|link=Treasure Hunting]]&lt;br /&gt;
[[Treasure Hunting|Treasure Map]]&lt;br /&gt;
|[[File:lootaspectcore.png|top|link=]]&lt;br /&gt;
Aspect Core&lt;br /&gt;
|[[File:lootcollectablecards.png|top|link=Collectable Cards]]&lt;br /&gt;
[[Collectable Cards|Collectable Card]]&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootresourcemap.png|top|link=Resource Maps]]&lt;br /&gt;
[[Resource Maps|Resource Map]]&lt;br /&gt;
|[[File:lootaspectextract.png|top|link=]]&lt;br /&gt;
Aspect Extract&lt;br /&gt;
|[[File:lootdungeonlantern.png|top|link=]]&lt;br /&gt;
Dungeon Lantern&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootmagicitem.png|top|link=]] [[File:lootwands.png|top|link=]]&lt;br /&gt;
Magical Items&lt;br /&gt;
|[[File:lootaspectphy.png|top|link=]]&lt;br /&gt;
Aspect Phylactery&lt;br /&gt;
|[[File:lootrarecloth.png|top|link=]]&lt;br /&gt;
Rare Cloth&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootgems.png|top|link=]]&lt;br /&gt;
Gems&lt;br /&gt;
|[[File:lootarcanerune.png|top|link=]]&lt;br /&gt;
Arcane Rune&lt;br /&gt;
|[[File:lootfootwear.png|top|link=]]&lt;br /&gt;
Rare Footwear&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootreagent.png|top|link=]] [[File:lootspellscroll.png|top|link=]]&lt;br /&gt;
Reagents&amp;lt;br&amp;gt;&lt;br /&gt;
Spell Scrolls&lt;br /&gt;
|[[File:lootarcanescroll.png|top|link=]]&lt;br /&gt;
Arcane Scroll&lt;br /&gt;
|[[File:lootdyeablecarpettiles.png|top|link=Carpet Tiles]]&lt;br /&gt;
[[Carpet Tiles|Dyeable Carpet Tile]]&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootbolts.png|top|link=]] [[File:lootbandages.png|top|link=]] [[File:lootpotion.png|top|link=]]&lt;br /&gt;
Arrows &amp;amp; Bolts&amp;lt;br&amp;gt;&lt;br /&gt;
Bandages&amp;lt;br&amp;gt;&lt;br /&gt;
Potions&amp;lt;br&amp;gt;&lt;br /&gt;
|[[File:lootplantchem.png|top|link=Plant Growing]]&lt;br /&gt;
[[Plant Growing|Plant Chemical]]&lt;br /&gt;
|[[File:lootcarpetdye.png|top|link=]]&lt;br /&gt;
Carpet Dye&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|[[File:lootplantseed.png|top|link=Plant Growing]]&lt;br /&gt;
[[Plant Growing|Plant Seed]]&lt;br /&gt;
|[[File:lootspellhuedeed.png|top|link=]]&lt;br /&gt;
Spell Hue Deed&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|&lt;br /&gt;
|[[File:lootdyes2.png|top|link=]]&lt;br /&gt;
Backpack Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Shield Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Hair Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Facial Hair Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Furniture Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Headwear Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Runebook Dye&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Template:Loot&amp;diff=6373</id>
		<title>Template:Loot</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Template:Loot&amp;diff=6373"/>
		<updated>2020-06-13T07:00:26Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
! Regular Loot&lt;br /&gt;
! Special Loot&lt;br /&gt;
! Rare Loot&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootgold.png|top|link=Gold]]&lt;br /&gt;
[[Gold]]&lt;br /&gt;
|[[File:lootresearchmaterials.png|top|link=Lore System#Research Materials|Research Materials]]&lt;br /&gt;
[[Lore System#Research Materials|Research Materials]]&lt;br /&gt;
|[[File:lootmcd.png|top|link=Mastercrafting Diagram]]&lt;br /&gt;
[[Mastercrafting_Diagram|Mastercrafting Diagram]]&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootdoubloons.png|top|link=Doubloons]]&lt;br /&gt;
[[Doubloons]]&lt;br /&gt;
|[[File:lootskillmasteryscroll.png|top|link=]]&lt;br /&gt;
Skill Mastery Scroll&lt;br /&gt;
|[[File:lootskillorb.png|top|link=]]&lt;br /&gt;
Skill Mastery Orb&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootgems.png|top|link=]]&lt;br /&gt;
Gems&lt;br /&gt;
|[[File:lootaspectcore.png|top|link=]]&lt;br /&gt;
Aspect Core&lt;br /&gt;
|[[File:lootcollectablecards.png|top|link=Collectable Cards]]&lt;br /&gt;
[[Collectable Cards|Collectable Card]]&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:loottmap.png|top|link=Treasure Hunting]]&lt;br /&gt;
[[Treasure Hunting|Treasure Map]]&lt;br /&gt;
|[[File:lootaspectextract.png|top|link=]]&lt;br /&gt;
Aspect Extract&lt;br /&gt;
|[[File:lootdungeonlantern.png|top|link=]]&lt;br /&gt;
Dungeon Lantern&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootresourcemap.png|top|link=Resource Maps]]&lt;br /&gt;
[[Resource Maps|Resource Map]]&lt;br /&gt;
|[[File:lootaspectphy.png|top|link=]]&lt;br /&gt;
Aspect Phylactery&lt;br /&gt;
|[[File:lootrarecloth.png|top|link=]]&lt;br /&gt;
Rare Cloth&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootmagicitem.png|top|link=]] [[File:lootwands.png|top|link=]]&lt;br /&gt;
Magical Items&lt;br /&gt;
|[[File:lootarcanerune.png|top|link=]]&lt;br /&gt;
Arcane Rune&lt;br /&gt;
|[[File:lootfootwear.png|top|link=]]&lt;br /&gt;
Rare Footwear&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|[[File:lootarcanescroll.png|top|link=]]&lt;br /&gt;
Arcane Scroll&lt;br /&gt;
|[[File:lootdyeablecarpettiles.png|top|link=Carpet Tiles]]&lt;br /&gt;
[[Carpet Tiles|Dyeable Carpet Tile]]&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|[[File:lootplantchem.png|top|link=Plant Growing]]&lt;br /&gt;
[[Plant Growing|Plant Chemical]]&lt;br /&gt;
|[[File:lootcarpetdye.png|top|link=]]&lt;br /&gt;
Carpet Dye&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|&lt;br /&gt;
|[[File:lootplantseed.png|top|link=Plant Growing]]&lt;br /&gt;
[[Plant Growing|Plant Seed]]&lt;br /&gt;
|[[File:lootspellhuedeed.png|top|link=]]&lt;br /&gt;
Spell Hue Deed&lt;br /&gt;
|- style=&amp;quot;text-align: center;&lt;br /&gt;
|[[File:lootbolts.png|top|link=]] [[File:lootbandages.png|top|link=]] [[File:lootpotion.png|top|link=]]&amp;lt;br&amp;gt;[[File:lootreagent.png|top|link=]] [[File:lootspellscroll.png|top|link=]]&amp;lt;br&amp;gt;&lt;br /&gt;
Arrows &amp;amp; Bolts&amp;lt;br&amp;gt;&lt;br /&gt;
Bandages&amp;lt;br&amp;gt;&lt;br /&gt;
Potions&amp;lt;br&amp;gt;&lt;br /&gt;
Reagents&amp;lt;br&amp;gt;&lt;br /&gt;
Spell Scrolls&lt;br /&gt;
|&lt;br /&gt;
|[[File:lootdyes2.png|top|link=]]&lt;br /&gt;
Backpack Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Shield Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Hair Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Facial Hair Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Furniture Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Headwear Dye&amp;lt;br&amp;gt;&lt;br /&gt;
Runebook Dye&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Loot&amp;diff=6372</id>
		<title>Loot</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Loot&amp;diff=6372"/>
		<updated>2020-06-13T06:35:03Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:PvM]]&lt;br /&gt;
==Creature Loot==&lt;br /&gt;
Loot items that creatures drop can be divided into regular loot, special loot and rare loot.&lt;br /&gt;
&lt;br /&gt;
Various bonuses can affect these categories separately such as:&lt;br /&gt;
&lt;br /&gt;
* [[Region Bonus Board|Region Bonus]] (Gold, Special Loot)&lt;br /&gt;
* [[Guild Prestige|Guild Favor]] (Gold, Special Loot, Rare Loot)&lt;br /&gt;
* Mastery Chain (Gold, Special Loot, Rare Loot)&lt;br /&gt;
* Fortune Aspect (Gold, Loot Items)&lt;br /&gt;
* Event Bonus&lt;br /&gt;
&lt;br /&gt;
{{Loot}}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5827</id>
		<title>Template:MasteryChainLinks</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5827"/>
		<updated>2020-03-17T05:20:26Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold;&amp;quot; | Bonus Type&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#ffce93;&amp;quot; | Bronze Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#e3e3e3;&amp;quot; | Silver Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#fffe65;&amp;quot; | Gold Link Bonus&lt;br /&gt;
|-&lt;br /&gt;
| Melee Accuracy&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Defense&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Special Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Swing Speed&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Ignore Armor Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Ignore Resist Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Meditation Rate&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Disruption Avoidance Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Damage to Beastial Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Construct Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Daemonic Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Elemental Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Humanoid Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Monstrous Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Nature Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damaged to Barded Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Poisoned Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Poison Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Backstab Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Trap and Wand Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 4.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 6.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Bosses&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Damage on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Ship Cannon Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Above 66% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Below 33% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000; color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Physical Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Parrying Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Magic Resist Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Healing Amounts Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Healing Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Boss Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage Resistance on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Effective Alchemy Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Lockpicking Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Poisoning Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Barding Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Barding Duration&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Summon Duration and Dispel Resist&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Chance for 5 Bonus Stealth Steps&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Gold Drop Increase&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|-&lt;br /&gt;
| Special Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|-&lt;br /&gt;
| Rare Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5826</id>
		<title>Template:MasteryChainLinks</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5826"/>
		<updated>2020-03-17T05:19:39Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold;&amp;quot; | Scalar&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#ffce93;&amp;quot; | 1.00&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#e3e3e3;&amp;quot; | 1.25&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#fffe65;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold;&amp;quot; | Bonus Type&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#ffce93;&amp;quot; | Bronze Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#e3e3e3;&amp;quot; | Silver Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#fffe65;&amp;quot; | Gold Link Bonus&lt;br /&gt;
|-&lt;br /&gt;
| Melee Accuracy&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Defense&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Special Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Swing Speed&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Ignore Armor Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Ignore Resist Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Meditation Rate&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Disruption Avoidance Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Damage to Beastial Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Construct Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Daemonic Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Elemental Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Humanoid Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Monstrous Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Nature Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damaged to Barded Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Poisoned Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Poison Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Backstab Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Trap and Wand Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 4.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 6.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Bosses&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Damage on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Ship Cannon Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Above 66% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Below 33% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000; color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Physical Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Parrying Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Magic Resist Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Healing Amounts Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Healing Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Boss Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage Resistance on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Effective Alchemy Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Lockpicking Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Poisoning Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Effective Barding Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50&lt;br /&gt;
|-&lt;br /&gt;
| Barding Duration&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Summon Duration and Dispel Resist&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Chance for 5 Bonus Stealth Steps&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Gold Drop Increase&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|-&lt;br /&gt;
| Special Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|-&lt;br /&gt;
| Rare Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5825</id>
		<title>Template:MasteryChainLinks</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5825"/>
		<updated>2020-03-17T05:17:24Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold;&amp;quot; | Scalar&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#ffce93;&amp;quot; | 1.00&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#e3e3e3;&amp;quot; | 1.25&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#fffe65;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold;&amp;quot; | Bonus Type&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#ffce93;&amp;quot; | Bronze Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#e3e3e3;&amp;quot; | Silver Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#fffe65;&amp;quot; | Gold Link Bonus&lt;br /&gt;
|-&lt;br /&gt;
| Melee Accuracy&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Defense&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Special Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Swing Speed&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Ignore Armor Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Ignore Resist Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Meditation Rate&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Disruption Avoidance Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Damage to Beastial Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Construct Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Daemonic Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Elemental Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Humanoid Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Monstrous Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Nature Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damaged to Barded Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Poisoned Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Poison Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Backstab Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Trap and Wand Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 4.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 6.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Bosses&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Damage on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Ship Cannon Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Above 66% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Below 33% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000; color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Physical Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Parrying Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Magic Resist Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Healing Amounts Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Healing Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Boss Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage Resistance on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Effective Alchemy Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Lockpicking Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Poisoning Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Barding Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Barding Duration&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Summon Duration and Dispel Resist&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Chance for 5 Bonus Stealth Steps&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Gold Drop Increase&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|-&lt;br /&gt;
| Special Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|-&lt;br /&gt;
| Rare Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 2.00%&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5177</id>
		<title>Template:MasteryChainLinks</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Template:MasteryChainLinks&amp;diff=5177"/>
		<updated>2019-11-25T07:13:36Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold;&amp;quot; | Scalar&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#ffce93;&amp;quot; | 1.00&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#e3e3e3;&amp;quot; | 1.25&lt;br /&gt;
! style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#fffe65;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold;&amp;quot; | Bonus Type&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#ffce93;&amp;quot; | Bronze Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#e3e3e3;&amp;quot; | Silver Link Bonus&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; font-weight:bold; background-color:#fffe65;&amp;quot; | Gold Link Bonus&lt;br /&gt;
|-&lt;br /&gt;
| Melee Accuracy&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Defense&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Special Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Swing Speed&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Ignore Armor Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Melee Aspect Weapon Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Charged Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Ignore Resist Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Meditation Rate&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Disruption Avoidance Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Modifier&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spellbook Aspect Effect Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 6.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 7.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Damage to Beastial Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Construct Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Daemonic Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Elemental Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Humanoid Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Monstrous Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Nature Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damaged to Barded Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Poisoned Creatures&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Poison Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Backstab Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Trap and Wand Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 4.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 5.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 6.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Bosses&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Damage on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Ship Cannon Damage&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Above 66% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage to Creatures Below 33% HP&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000; color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Physical Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Spell Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Parrying Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Magic Resist Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Healing Amounts Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Follower Healing Received&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Boss Damage Resistance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 2.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 2.50%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 3.00%&lt;br /&gt;
|-&lt;br /&gt;
| Damage Resistance on Ships&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
| style=&amp;quot;text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
| Effective Alchemy Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Lockpicking Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Poisoning Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Effective Barding Skill&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Barding Duration&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Summon Duration and Dispel Resist&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Chance for 5 Bonus Stealth Steps&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 3.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 3.75%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 4.50%&lt;br /&gt;
|-&lt;br /&gt;
| Gold Drop Increase&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Special Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|-&lt;br /&gt;
| Rare Loot Chance&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#ffce93;&amp;quot; | 1.00%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#e3e3e3;&amp;quot; | 1.25%&lt;br /&gt;
| style=&amp;quot;text-align: center; color: black; background-color:#fffe65;&amp;quot; | 1.50%&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4851</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4851"/>
		<updated>2019-10-24T01:32:43Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Limited Edition -- Easter 2018 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- King&#039;s Faire==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Easter 2018==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/24-hour-egg-hunt-begins-sunday-april-21st-at-12pm-est.2065/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Valentine&#039;s 2018==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Christmas 2018==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4850</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4850"/>
		<updated>2019-10-24T01:30:50Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (Christmas 2018) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- King&#039;s Faire==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Easter 2018==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Valentine&#039;s 2018==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Christmas 2018==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4849</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4849"/>
		<updated>2019-10-24T01:30:32Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Limited Edition Items -- Easter 2018 */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- King&#039;s Faire==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Easter 2018==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Valentine&#039;s 2018==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4848</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4848"/>
		<updated>2019-10-24T01:30:24Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (Valentine&amp;#039;s 2018) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- King&#039;s Faire==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition Items -- Easter 2018==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- Valentine&#039;s 2018==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4847</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4847"/>
		<updated>2019-10-24T01:30:07Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (Easter 2018) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- King&#039;s Faire==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Limited Edition Items -- Easter 2018==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4846</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4846"/>
		<updated>2019-10-24T01:29:50Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (King&amp;#039;s Faire) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition -- King&#039;s Faire==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Easter 2018)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4845</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4845"/>
		<updated>2019-10-24T01:29:04Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (King&amp;#039;s Faire) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Easter 2018)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4844</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4844"/>
		<updated>2019-10-24T01:27:43Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (King&amp;#039;s Faire) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/the-kings-faire-august-10-25-opening-ceremony-on-saturday-august-10th-at-2pm-est.2361/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Birdbath&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | King&#039;s Faire Fireworks Poster&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Juggling Balls&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Firebreathing Oil&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Horse Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Llama Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bear Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Deer Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wolf Topiary&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Lilac&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Large Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Medium Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Small Snapdragon&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Spirea Bush&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Dreamcatcher&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Easter 2018)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4843</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4843"/>
		<updated>2019-10-24T01:25:13Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (???) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Easter 2018)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4842</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4842"/>
		<updated>2019-10-24T01:25:00Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (Valentine&amp;#039;s Day) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (???)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4841</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4841"/>
		<updated>2019-10-24T01:24:11Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Previous Limited Edition Items (Valentine&amp;#039;s Day) */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (???)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s Day)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/mending-the-broken-heart-of-the-mountain-saturday-february-16th-at-3pm-est.1715/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4840</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4840"/>
		<updated>2019-10-24T01:23:10Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (???)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Valentine&#039;s Day)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | tights&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | maiden&#039;s robe&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Heart (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Flowerpot (???)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | rose on a vine&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
https://forums.uooutlands.com/index.php?threads/christmas-event-decorating-trees-begins-saturday-december-22-at-noon-est.1322/&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Crafted with Evergreen Sapling + Other Items)&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4839</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4839"/>
		<updated>2019-10-24T01:13:05Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (???)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (???)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Craft with Evergreen Sapling + 5 Distilled Holiday Spirits + 3P/3R/3G/3B/3Y Holiday Ornaments&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Thanksgiving)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4838</id>
		<title>Prevalian Merchant</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Prevalian_Merchant&amp;diff=4838"/>
		<updated>2019-10-24T01:12:28Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:prevaliamarket01.gif|right]]The Prevalia Market contains a large number of luxury items, clothing, and assorted goods which can be purchased with [[Prevalia Coins]] (donation currency) or [[Gold]]. You can find the Prevalian Merchant at the wagon near the main Prevalia Bank. Sometimes there will be items that are available for only a limited time so check often or you might miss out on something interesting! If you would like to [https://uooutlands.com/donate/ purchase Prevalia Coins, visit our Donation Page] for more info. Please note that masks, clothing, tomes, and other items are NOT blessed unless explicitly stated. You can purchase Bless Deeds with Prevalia Coins or Gold though from the Prevalian Merchant.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Limited Edition==&lt;br /&gt;
===Limited Edition Shimmer Hues===&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerparadox2346.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Paradox Cloth (2346)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
Halloween Season (may return)&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center;&amp;quot; | [[File:shimmerredux1957.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
Shimmer Redux (1957)&amp;lt;br /&amp;gt;&lt;br /&gt;
Available: October ?? - ??, 2019&amp;lt;br /&amp;gt;&lt;br /&gt;
One Year Anniversary (will never return)&lt;br /&gt;
&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
===Limited Edition Items===&lt;br /&gt;
* To be announced...&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Legacy Shimmer Hues==&lt;br /&gt;
These hues are unavailable unless otherwise specified:&lt;br /&gt;
&lt;br /&gt;
{{ShimmerHues}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Masks==&lt;br /&gt;
{{PrevMerchMasks}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Clothing==&lt;br /&gt;
{{PrevMerchClothing}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Tomes==&lt;br /&gt;
{{PrevMerchTomes}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Mastery Chain==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Bronze Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:bronzemasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Silver Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:silvermasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Gold Mastery Chain Link Reforging Tool&lt;br /&gt;
[[File:goldmasterychainlinkreforgingtool.jpg|center|link=Mastery_Chain#Mastery_Chain_Link_Reforging_Tools]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Hued Cloth==&lt;br /&gt;
{{PrevMerchHuedCloth}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Furniture==&lt;br /&gt;
{{PrevMerchFurniture}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Deeds==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Bless Deed&lt;br /&gt;
[[File:clothingblessdeed.jpg|center|link=Clothing Bless Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Clothing Unbless Deed&lt;br /&gt;
[[File:clothingunblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Runebook Bless Deed&lt;br /&gt;
[[File:runebookblessdeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Rune Tome Bless Deed&lt;br /&gt;
[[File:runetomeblessdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Creature Upgrades Reset Deed&lt;br /&gt;
[[File:creatureupgradesresetdeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Player Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Gender Change Deed]]&lt;br /&gt;
[[File:standarddeed.jpg|center|link=Gender Change Deed]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Guild Abbreviation Rename Deed&lt;br /&gt;
[[File:standarddeed.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Plants==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Extremely Common Seed&lt;br /&gt;
[[File:extremelycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Very Common Seed&lt;br /&gt;
[[File:verycommonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Common Seed&lt;br /&gt;
[[File:commonseed.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Growth Serum&lt;br /&gt;
[[File:exceptionalgrowthserum.jpg|center|link=]]&lt;br /&gt;
|- style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Treated Heat Filter&lt;br /&gt;
[[File:exceptionaltreatedheatfilter.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Water Purifier&lt;br /&gt;
[[File:exceptionalwaterpurifier.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Exceptional Fertilizer&lt;br /&gt;
[[File:exceptionalfertilizer.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Plant Restoratives&lt;br /&gt;
[[File:plantrestoratives.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Misc==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | [[Distribution Chest]]&lt;br /&gt;
[[File:distributionchest.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Traveler&#039;s Lantern&lt;br /&gt;
[[File:travelerslantern.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Donation Map (Dyeable)&lt;br /&gt;
[[File:donationmap.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Wood Frame Donation Map&lt;br /&gt;
[[File:woodframedonationmap.jpg|center|link=]]&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (King&#039;s Faire)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (???)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted freesia&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted lily of the valley&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted snowdrops&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | potted campion&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (???)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Christmas 2018)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Evergreen Sapling&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | Decorated Christmas Tree (Craft with Evergreen Sapling + 5 Distilled Holiday Spirits + 3P/3R/3G/3B/3Y Holiday Ornaments&lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Previous Limited Edition Items (Thanksgiving)==&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot; style=&amp;quot;vertical-align: top;&amp;quot;&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;br /&gt;
| style=&amp;quot;vertical-align: top; text-align: center; background-color:#000000;&amp;quot; | &lt;br /&gt;
[[File:placeholder.jpg|center|link=]]&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Magery&amp;diff=4553</id>
		<title>Magery</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Magery&amp;diff=4553"/>
		<updated>2019-08-19T20:37:37Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[Category:Skills]]__NOTOC__&lt;br /&gt;
==Summary==&lt;br /&gt;
Magery is perhaps the most versatile skill available. Players can use it to travel the world, summon beings to do your bidding, attack monsters (and other players) and even create food. Spells require Reagents to cast, which can be bought from Mage Shops, Vendors, or found as loot. &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Detailed Info==&lt;br /&gt;
*Magery Minimum skill needed to cast spell is Spell Circle * 10&lt;br /&gt;
*Skill needed to cast spell with 100% success chance (no fizzling) is Minimum Skill Required + 20&lt;br /&gt;
*Exception is First Circle Spells, which require 0 Minimum skill and at 30 Magery have a 100% success rate&lt;br /&gt;
*Casting a spell from a scroll increases a player&#039;s effective Magery skill by 20&lt;br /&gt;
*Players can gain Magery skill by casting any spell that meet the minimum Magery requirement for but that they have a less than 100% chance of success on casting&lt;br /&gt;
*Default casting time is (0.5 + (0.25 * (Circle - 1)) seconds&lt;br /&gt;
*Certain spells (Recall, Gate, Resurrection, Summons, Earthquake) have unique casting times&lt;br /&gt;
*Casting recovery time is 0.2 seconds&lt;br /&gt;
*Spell damage against creatures is increased by 100%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Charged Spells===&lt;br /&gt;
*Spells cast by creatures against players or players against creatures have a 10% chance to be Charged&lt;br /&gt;
*Charged spells deal an additional 50% to the target&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Heat of Battle===&lt;br /&gt;
*When a player is in the Heat of Battle they are unable to cast Recall, Gate, or use any Moongates.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Poisoning===&lt;br /&gt;
*Creatures cannot resist casted Poison from players&lt;br /&gt;
*Players have a (20% * (Poisoning Skill / 100)) chance to upgrade Spell Poison onto creatures to Lethal Poison&lt;br /&gt;
*In order to be able to upgrade to Lethal poison, the player must have a Lethal Poison potion in their backpack (if they do not have, they cannot upgrade to Lethal Poison)&lt;br /&gt;
*On a successful Lethal Poison upgrade cast, there is a 20% chance a Lethal Poison potion in their backpack will be consumed (and players will be notified)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Spell Interrupts==&lt;br /&gt;
*All hostile spells from 4th, 5th, 6th, 7th, and 8th circles will interrupt other players 100% of the time&lt;br /&gt;
*Players casting onto themselves will always interrupt themselves regardless of spell circle and will never initiate a &amp;quot;window&amp;quot; nor will reset an active one&lt;br /&gt;
*Each circle &amp;quot;window&amp;quot; is independent of each other (i.e. there is a 1st, 2nd, and 3rd circle window)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===1st Circle Spells===&lt;br /&gt;
*Casting a hostile 1st circle spell against another player will at first have an interrupt chance of 100%&lt;br /&gt;
*Afterwards, a 5 second window starts where all subsequent 1st circle hostile spells against the target have a 25% interrupt chance&lt;br /&gt;
*If the player is hit with another 1st circle spell before 5 seconds have passed, the spell window resets to 5 seconds&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===2nd Circle Spells===&lt;br /&gt;
*Casting a hostile 2nd circle spell against another player will at first have an interrupt chance of 100%&lt;br /&gt;
*Afterwards, a 5 second window starts where all subsequent 2nd circle hostile spells against the target have a 50% interrupt chance&lt;br /&gt;
*If the player is hit with another 2nd circle spell before 5 seconds have passed, the spell window resets to 5 seconds&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Circle Spells===&lt;br /&gt;
*Casting a hostile 3rd circle spell against another player will at first have an interrupt chance of 100%&lt;br /&gt;
*Afterwards, a 5 second window starts where all subsequent 3rd circle hostile spells against the target have a 75% interrupt chance&lt;br /&gt;
*If the player is hit with another 3rd circle spell before 5 seconds have passed, the spell window resets to 5 seconds&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Spell Circles==&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;1st Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;&amp;amp;nbsp;&amp;amp;nbsp;0 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;30 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;0.50 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;2nd Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;20 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;40 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;0.75 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;3rd Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;30 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;50 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;1.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;4th Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;40 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;60 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;1.25 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Recall)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;2.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;5th Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;50 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;70 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;1.50 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Blade Spirits)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;6.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Summon Creature)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;6.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;6th Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;60 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;80 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;1.75 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;7th Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;70 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;90 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;2.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Gate Travel)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;4.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
===&amp;lt;span style=&amp;quot;color:#F3F3F3&amp;quot;&amp;gt;8th Circle&amp;lt;/span&amp;gt;===&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | &lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | &lt;br /&gt;
|-&lt;br /&gt;
|• Min Required to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;&amp;amp;nbsp;&amp;amp;nbsp;80 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|• 100% Success to Cast || &amp;lt;span&amp;gt;&#039;&#039;&#039;100 Magery&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Default)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;2.25 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Earthquake)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;3.25 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Energy Vortex)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;4.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Resurrection)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;5.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Summon Air Elemental)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;6.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Summon Daemon)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;5.50 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Summon Earth Elemental)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;5.00 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Summon Fire Elemental)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;4.50 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;• Time to Cast (Summon Water Elemental)&#039;&#039;&#039;&amp;lt;/span&amp;gt; || &amp;lt;span style=&amp;quot;color:#A9BCD0&amp;quot;&amp;gt;&#039;&#039;&#039;4.50 Seconds&#039;&#039;&#039;&amp;lt;/span&amp;gt;&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Spells==&lt;br /&gt;
To be completed&lt;br /&gt;
*Magic Reflect - The cooldown usage for Magic Reflect spell (30 seconds) begins when the reflection occurs (rather than at cast)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Training==&lt;br /&gt;
* Up to 50.0 skill can be trained by a NPC mage or scribe vendor.&lt;br /&gt;
* Skill gains for Magery up to 70.0 are accelerated in the [[New Player Dungeon]].&lt;br /&gt;
* All method listed are similar in execution but vary slightly by cost and feel.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===Method One===&lt;br /&gt;
* 50-60 Lightning Target:New Player Dungeon creature&lt;br /&gt;
* 60-75 Invisibility Target:Self&lt;br /&gt;
* 75-85 Flamestrike Target:Prevalia Zoo creature&lt;br /&gt;
* 85-100 Summon Air Elemental, Summon Earth Elemental, Summon Fire Elemental or Summon Water Elemental&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===[http://forums.uooutlands.com/index.php?threads/magery-guide-help.1177/post-6434 Method Two:]===&lt;br /&gt;
* 50-60 Lightning&lt;br /&gt;
* 60-70 Energy Bolt&lt;br /&gt;
* 70-90 Flamestrike&lt;br /&gt;
* 90-100 Summon Air Elemental, Summon Earth Elemental, Summon Fire Elemental or Summon Water Elemental&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
===[http://forums.uooutlands.com/index.php?threads/magery-guide-help.1177/post-12593 Method Three:]===&lt;br /&gt;
* 50-60 cast lightning in the nub dungeon on the corpsers in the frog room&lt;br /&gt;
* 60-70 cast invisibility on yourself in the nub dungeon&lt;br /&gt;
* 70-80 cast invisibility on yourself&lt;br /&gt;
* 80-100 Summon Air Elemental, Summon Earth Elemental, Summon Fire Elemental or Summon Water Elemental&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Inscription&amp;diff=3532</id>
		<title>Inscription</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Inscription&amp;diff=3532"/>
		<updated>2019-06-15T07:49:07Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Arcane Runes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;float: left;&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
[[File:wiki-inscription.gif|center|alt=Inscription|link=]]&lt;br /&gt;
[[Category:Skills]]&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
* Create spells scrolls, runebooks, and other library items&lt;br /&gt;
* Does not require mana or reagents to create spell scrolls&lt;br /&gt;
* Players creating spell scrolls from circle 1-6 must have the spell in their own spellbook in order to craft it&lt;br /&gt;
* Crafting spell scrolls from circle 7-8 will require Arcane Scrolls which are items found as loot in game&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Spell Improvements==&lt;br /&gt;
* Reactive Armor maximum melee damage prevention increased by an additional (40 * (Inscription Skill / 100))&lt;br /&gt;
* Protection Spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
* Arch Protection Spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
* Bless Spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
* Invisibility spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Automatic Spell Scroll Usage==&lt;br /&gt;
* If Automatic Spell Scroll Usage is toggled, whenever a player casts a spell, it will first check their backpack to see if a matching spell scroll for that spell is present, and if so, attempt to cast the spell using the scroll instead of with reagents&lt;br /&gt;
* Players can toggle this mechanic on and off typing [AutoUseSpellScrolls or from the Help Page -&amp;gt; Commands Tab -&amp;gt; Mechanics Group -&amp;gt; AutoUseSpellScrolls button&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:autousespellscrolls.gif|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==PvM Bonuses==&lt;br /&gt;
* Magic Reflect spell has a (100% - (Spell Circle * 10%)) * (Inscription Skill / 100) chance to remain in place after reflecting a spell&lt;br /&gt;
* Players using a scroll to cast a Level 1-6 spell will have a (40% * (Inscription Skill / 100))) to not consume the scroll&lt;br /&gt;
* Players using a scroll to cast a Level 7-8 spell will have a (80% * (Inscription Skill / 100))) to not consume the scroll&lt;br /&gt;
* Players using a scroll to cast a spell will receive a (25% * (Inscription Skill / 100)) damage bonus against creatures&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==PvP Bonuses==&lt;br /&gt;
* Magic Reflect spell has an (50% * (Inscription Skill / 100)) chance to stay up after reflecting 1 spell, but will be nullified after the next spell occurs (and when staying up, will look and sound as if the player recast Magic Reflect on himself/herself)&lt;br /&gt;
* Increases the maximum number of Trapped Pouches a player may have in their backpack have during PvP (which is by default 15) by an additional (10 * (Inscription Skill / 10))&lt;br /&gt;
* Players using a scroll to cast a spell will receive a (10% * (Inscription Skill / 100)) damage bonus against other players&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Arcane Runes==&lt;br /&gt;
* Found as loot items from a variety of sources&lt;br /&gt;
* Players can double-click an Arcane Rune to place it on the ground at their location&lt;br /&gt;
* Arcane Runes have an effect radius of (6 + (6 * (Inscription Skill / 100))&lt;br /&gt;
** Note: Aggression Rune has a reduced effect radius of (3 + 3 * (Inscription Skill / 100))&lt;br /&gt;
* Arcane Runes have a duration of (10 + (10 * (Inscription Skill / 100)) minutes&lt;br /&gt;
* Arcane Runes apply their bonus to all players within their effect radius every 5 seconds (and the effect lasts for 5 seconds)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The effects of Arcane Runes are as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;contenttable sortable&amp;quot; style=&amp;quot;border: 0px; width: 100%;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:empowermentrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Empowerment Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases spell damage caused by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:spellshieldingrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Spellshielding Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Reduces spell damage taken by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:furyrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fury Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases melee damage caused by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:fortificationrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fortification Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Reduces physical damage taken by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:toxicityrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Toxicity Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases poison damage caused by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:poisonwardingrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Poison Warding Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Reduces poison damage taken by players by 20% and increases cure chances by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:aggressionrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Aggression Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases creature aggression towards nearby players immensely&lt;br /&gt;
* Effect radius is only 50% of normal (base 3)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:healingrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Healing Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases healing amounts for players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:immunityrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Immunity Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Players have a 20% chance to avoid Bleed, Disease, Knockback, Hinder, and Entangle effects&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:chemistryrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Chemistry Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases potion effectiveness by 20% (similar to having Alchemy skill)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;| &lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Training==&lt;br /&gt;
* Estimated 65,000 scrolls to GM&lt;br /&gt;
* Requires an estimated 12 hours of crafting to max the skill&lt;br /&gt;
* What to craft to GM&lt;br /&gt;
** 50 - 60: Magic Reflect&lt;br /&gt;
** 60 - 80: Energy Bolt&lt;br /&gt;
** 80 - 100: Spellbooks&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Inscription&amp;diff=3531</id>
		<title>Inscription</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Inscription&amp;diff=3531"/>
		<updated>2019-06-15T07:48:40Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: /* Arcane Runes */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;&amp;lt;div style=&amp;quot;float: left;&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
[[File:wiki-inscription.gif|center|alt=Inscription|link=]]&lt;br /&gt;
[[Category:Skills]]&lt;br /&gt;
&lt;br /&gt;
==Summary==&lt;br /&gt;
* Create spells scrolls, runebooks, and other library items&lt;br /&gt;
* Does not require mana or reagents to create spell scrolls&lt;br /&gt;
* Players creating spell scrolls from circle 1-6 must have the spell in their own spellbook in order to craft it&lt;br /&gt;
* Crafting spell scrolls from circle 7-8 will require Arcane Scrolls which are items found as loot in game&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Spell Improvements==&lt;br /&gt;
* Reactive Armor maximum melee damage prevention increased by an additional (40 * (Inscription Skill / 100))&lt;br /&gt;
* Protection Spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
* Arch Protection Spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
* Bless Spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
* Invisibility spell duration increased to (500% * (Inscription Skill / 100)) of normal&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Automatic Spell Scroll Usage==&lt;br /&gt;
* If Automatic Spell Scroll Usage is toggled, whenever a player casts a spell, it will first check their backpack to see if a matching spell scroll for that spell is present, and if so, attempt to cast the spell using the scroll instead of with reagents&lt;br /&gt;
* Players can toggle this mechanic on and off typing [AutoUseSpellScrolls or from the Help Page -&amp;gt; Commands Tab -&amp;gt; Mechanics Group -&amp;gt; AutoUseSpellScrolls button&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[File:autousespellscrolls.gif|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==PvM Bonuses==&lt;br /&gt;
* Magic Reflect spell has a (100% - (Spell Circle * 10%)) * (Inscription Skill / 100) chance to remain in place after reflecting a spell&lt;br /&gt;
* Players using a scroll to cast a Level 1-6 spell will have a (40% * (Inscription Skill / 100))) to not consume the scroll&lt;br /&gt;
* Players using a scroll to cast a Level 7-8 spell will have a (80% * (Inscription Skill / 100))) to not consume the scroll&lt;br /&gt;
* Players using a scroll to cast a spell will receive a (25% * (Inscription Skill / 100)) damage bonus against creatures&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==PvP Bonuses==&lt;br /&gt;
* Magic Reflect spell has an (50% * (Inscription Skill / 100)) chance to stay up after reflecting 1 spell, but will be nullified after the next spell occurs (and when staying up, will look and sound as if the player recast Magic Reflect on himself/herself)&lt;br /&gt;
* Increases the maximum number of Trapped Pouches a player may have in their backpack have during PvP (which is by default 15) by an additional (10 * (Inscription Skill / 10))&lt;br /&gt;
* Players using a scroll to cast a spell will receive a (10% * (Inscription Skill / 100)) damage bonus against other players&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Arcane Runes==&lt;br /&gt;
* Found as loot items from a variety of sources&lt;br /&gt;
* Players can double-click an Arcane Rune to place it on the ground at their location&lt;br /&gt;
* Arcane Runes have an effect radius of (6 + (6 * (Inscription Skill / 100))&lt;br /&gt;
* -- Note: Aggression Rune has a reduced effect radius of (3 + 3 * (Inscription Skill / 100))&lt;br /&gt;
* Arcane Runes have a duration of (10 + (10 * (Inscription Skill / 100)) minutes&lt;br /&gt;
* Arcane Runes apply their bonus to all players within their effect radius every 5 seconds (and the effect lasts for 5 seconds)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
The effects of Arcane Runes are as follows:&lt;br /&gt;
&lt;br /&gt;
{| class=&amp;quot;contenttable sortable&amp;quot; style=&amp;quot;border: 0px; width: 100%;&amp;quot;&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:empowermentrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Empowerment Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases spell damage caused by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:spellshieldingrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Spellshielding Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Reduces spell damage taken by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:furyrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fury Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases melee damage caused by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:fortificationrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Fortification Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Reduces physical damage taken by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:toxicityrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Toxicity Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases poison damage caused by players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:poisonwardingrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Poison Warding Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Reduces poison damage taken by players by 20% and increases cure chances by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:aggressionrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Aggression Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases creature aggression towards nearby players immensely&lt;br /&gt;
* Effect radius is only 50% of normal (base 3)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:healingrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Healing Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases healing amounts for players by 20%&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:immunityrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Immunity Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Players have a 20% chance to avoid Bleed, Disease, Knockback, Hinder, and Entangle effects&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
|- style=&amp;quot;border: 0px;&amp;quot;&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;|&lt;br /&gt;
[[File:chemistryrune.png|center|link=]]&lt;br /&gt;
&lt;br /&gt;
&#039;&#039;&#039;Chemistry Rune&#039;&#039;&#039;&lt;br /&gt;
&lt;br /&gt;
* Increases potion effectiveness by 20% (similar to having Alchemy skill)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;| &lt;br /&gt;
| style=&amp;quot;border: 0px; text-align: left; vertical-align: top;&amp;quot;| &lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Training==&lt;br /&gt;
* Estimated 65,000 scrolls to GM&lt;br /&gt;
* Requires an estimated 12 hours of crafting to max the skill&lt;br /&gt;
* What to craft to GM&lt;br /&gt;
** 50 - 60: Magic Reflect&lt;br /&gt;
** 60 - 80: Energy Bolt&lt;br /&gt;
** 80 - 100: Spellbooks&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Houses&amp;diff=2497</id>
		<title>Houses</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Houses&amp;diff=2497"/>
		<updated>2019-06-05T10:44:43Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{| class=&amp;quot;wikitable sortable&amp;quot;&lt;br /&gt;
! style=&amp;quot;text-align: center;&amp;quot; | Display Name&lt;br /&gt;
! style=&amp;quot;text-align: center;&amp;quot; | Picture&lt;br /&gt;
! style=&amp;quot;text-align: center;&amp;quot; | Price&lt;br /&gt;
! style=&amp;quot;text-align: center;&amp;quot; | Secures&lt;br /&gt;
! style=&amp;quot;text-align: center;&amp;quot; | Dimensions&lt;br /&gt;
! style=&amp;quot;text-align: center;&amp;quot; | Floors&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Abode]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianabode00a.jpg|link=Andarian Abode]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Barn]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianbarn00a.jpg|link=Andarian Barn]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Block House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianblockhouse00a.jpg|link=Andarian Block House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Bluestone And Slate]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianbluestoneandslate00a.jpg|link=Andarian Bluestone And Slate]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Courtyard Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andariancourtyardkeep00a.jpg|link=Andarian Courtyard Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15,150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 39&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 32 x 34&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Farmstead]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianfarmstead00a.jpg|link=Andarian Farmstead]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9,850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 32&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31 x 31&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.25&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Mercantile Guildhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianmercantileguildhouse00a.jpg|link=Andarian Mercantile Guildhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 17 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Merchant&#039;s Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianmerchantshouse00a.jpg|link=Andarian Merchant&#039;s Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Merchant&#039;s Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianmerchantsvilla00a.jpg|link=Andarian Merchant&#039;s Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianranchhouse00a.jpg|link=Andarian Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianresidence00a.jpg|link=Andarian Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Simple Wood And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andariansimplewoodandplaster00a.jpg|link=Andarian Simple Wood And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 450,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 7&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Sloped Roof Lightstone And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianslopedrooflightstoneandplaster00a.jpg|link=Andarian Sloped Roof Lightstone And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Two Story Brick And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andariantwostorybrickandplaster00a.jpg|link=Andarian Two Story Brick And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,650,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 17 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andariantwostoryhouse00a.jpg|link=Andarian Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Two Story Porch Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andariantwostoryporchranchhouse00a.jpg|link=Andarian Two Story Porch Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16 x 18&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Veranda East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianverandaeast00a.jpg|link=Andarian Veranda East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianvilla00a.jpg|link=Andarian Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16 x 22&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Andarian Villa With Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:andarianvillawithtower00a.jpg|link=Andarian Villa With Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6,750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 26&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 19 x 26&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Blue Stone Guild Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:bluestoneguildfortress00a.jpg|link=Blue Stone Guild Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12,850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 36&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31 x 33&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Brick And Plaster Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:brickandplastersquarehouse00a.jpg|link=Brick And Plaster Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Brick And Wood Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:brickandwoodcompound00a.jpg|link=Brick And Wood Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12,450,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 36&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31 x 31&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian City Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambriancityshoppe00a.jpg|link=Cambrian City Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Farmstead]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianfarmstead00a.jpg|link=Cambrian Farmstead]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18 x 17&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Fortified Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianfortifiedvilla00a.jpg|link=Cambrian Fortified Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Greathall]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambriangreathall00a.jpg|link=Cambrian Greathall]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Large House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianlargehouse00a.jpg|link=Cambrian Large House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Manor]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianmanor00a.jpg|link=Cambrian Manor]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Pillared Manor]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianpillaredmanor00a.jpg|link=Cambrian Pillared Manor]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 21 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Residence With Balcony]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianresidencewithbalcony00a.jpg|link=Cambrian Residence With Balcony]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Sandstone Cellar]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambriansandstonecellar00a.jpg|link=Cambrian Sandstone Cellar]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianvilla00a.jpg|link=Cambrian Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Cambrian Villa With Balcony]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:cambrianvillawithbalcony00a.jpg|link=Cambrian Villa With Balcony]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Caravan Wagon]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:caravanwagon00a.jpg|link=Caravan Wagon]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Caravan Wagon East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:caravanwagoneast00a.jpg|link=Caravan Wagon East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Castle]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:castle00a.jpg|link=Castle]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 35&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31 x 32&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Compact Stone Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:compactstonekeep00a.jpg|link=Compact Stone Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 21&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 20 x 22&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Desert Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:deserttower00a.jpg|link=Desert Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Farmlands Cabin With Cellar]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:farmlandscabinwithcellar00a.jpg|link=Farmlands Cabin With Cellar]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 17 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Farmlands Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:farmlandsranchhouse00a.jpg|link=Farmlands Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Farmlands Two Story Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:farmlandstwostoryranchhouse00a.jpg|link=Farmlands Two Story Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Farmstead Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:farmsteadcompound00a.jpg|link=Farmstead Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11,850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 35&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 32 x 32&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Fieldstone And Log Two Story Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:fieldstoneandlogtwostoryresidence00a.jpg|link=Fieldstone And Log Two Story Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 19 x 17&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Fieldstone And Plaster Courtyard]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:fieldstoneandplastercourtyard00a.jpg|link=Fieldstone And Plaster Courtyard]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,650,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 20 x 18&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Fieldstone And Plaster Half Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:fieldstoneandplasterhalfshoppe00a.jpg|link=Fieldstone And Plaster Half Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Fieldstone And Plaster Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:fieldstoneandplastershoppe00a.jpg|link=Fieldstone And Plaster Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Fieldstone And Plaster Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:fieldstoneandplastersquarehouse00a.jpg|link=Fieldstone And Plaster Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Fieldstone And Shingle Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:fieldstoneandshingleranchhouse00a.jpg|link=Fieldstone And Shingle Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 450,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 7&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Fieldstone And Slate Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:fieldstoneandslateranchhouse00a.jpg|link=Fieldstone And Slate Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontiercompound00a.jpg|link=Frontier Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9,750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 32&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 30 x 30&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Guildhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontierguildhouse00a.jpg|link=Frontier Guildhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9,550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 27 x 26&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Log And Slate Overlook]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontierlogandslateoverlook00a.jpg|link=Frontier Log And Slate Overlook]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Log House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontierloghouse00a.jpg|link=Frontier Log House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontierresidence00a.jpg|link=Frontier Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontiershoppe00a.jpg|link=Frontier Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 450,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 7&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Slate Roof Cabin]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontierslateroofcabin00a.jpg|link=Frontier Slate Roof Cabin]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Two Story Slate Roof]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontiertwostoryslateroof00a.jpg|link=Frontier Two Story Slate Roof]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Frontier Veranda House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:frontierverandahouse00a.jpg|link=Frontier Veranda House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18 x 19&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Greybrick Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:greybrickresidence00a.jpg|link=Greybrick Residence]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Guesthouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:guesthouse00a.jpg|link=Guesthouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4,950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 23&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 28 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Guild Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:guildfortress00a.jpg|link=Guild Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10,950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 34&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 26 x 28&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Landaus Lodge]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:landauslodge00a.jpg|link=Landaus Lodge]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 21&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Large Brick House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:largebrickhouse00a.jpg|link=Large Brick House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Large Frontier House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:largefrontierhouse00a.jpg|link=Large Frontier House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Large Marble Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:largemarblecompound00a.jpg|link=Large Marble Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11,750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 35&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 32 x 30&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Large Patio House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:largepatiohouse00a.jpg|link=Large Patio House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Large Sandstone Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:largesandstonecompound00a.jpg|link=Large Sandstone Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 37&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 33 x 33&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Large Wooden House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:largewoodenhouse00a.jpg|link=Large Wooden House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16 x 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Light Brick And Whitewash Courtyard]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightbrickandwhitewashcourtyard00a.jpg|link=Light Brick And Whitewash Courtyard]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 19&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 21 x 20&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Light Brick And Whitewash Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightbrickandwhitewashranchhouse00a.jpg|link=Light Brick And Whitewash Ranch House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 25&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 29 x 19&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Light Brick And Whitewash Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightbrickandwhitewashvilla00a.jpg|link=Light Brick And Whitewash Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 17&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Lightstone And Beam Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightstoneandbeamsquarehouse00a.jpg|link=Lightstone And Beam Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Lightstone And Slate Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightstoneandslatecompound00a.jpg|link=Lightstone And Slate Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13,150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 37&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31 x 32&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Lightstone Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightstonefortress00a.jpg|link=Lightstone Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,650,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Lightstone Juliet House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightstonejuliethouse00a.jpg|link=Lightstone Juliet House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Lightstone Patio House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightstonepatiohouse00a.jpg|link=Lightstone Patio House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Lightstone Small Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:lightstonesmallfortress00a.jpg|link=Lightstone Small Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Log Cabin]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:logcabin00a.jpg|link=Log Cabin]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 450,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 7&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Mage&#039;s Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:magestower00a.jpg|link=Mage&#039;s Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Marble Patio House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:marblepatiohouse00a.jpg|link=Marble Patio House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Marble Redoubt]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:marbleredoubt00a.jpg|link=Marble Redoubt]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Marble Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:marblesquarehouse00a.jpg|link=Marble Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Medium Stone Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:mediumstonetower00a.jpg|link=Medium Stone Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,850,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 17 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Medium Stone Tower East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:mediumstonetowereast00a.jpg|link=Medium Stone Tower East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,650,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Palisade Blockhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:palisadeblockhouse00a.jpg|link=Palisade Blockhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Palisade Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:palisadefortress00a.jpg|link=Palisade Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 25&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 27 x 24&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Palisade Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:palisadekeep00a.jpg|link=Palisade Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.25&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Palisade Outpost]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:palisadeoutpost00a.jpg|link=Palisade Outpost]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Palisade Scout Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:palisadescouttower00a.jpg|link=Palisade Scout Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Palisade Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:palisadetower00a.jpg|link=Palisade Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Prevalian Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:prevalianfortress00a.jpg|link=Prevalian Fortress]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16,550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 41&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31 x 31&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Prevalian Manor]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:prevalianmanor00a.jpg|link=Prevalian Manor]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5,750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 24&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 22 x 25&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.25&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Prevalian Redoubt]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:prevalianredoubt00a.jpg|link=Prevalian Redoubt]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 17&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Red Brick Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:redbricksquarehouse00a.jpg|link=Red Brick Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Red Brick Steeple]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:redbricksteeple00a.jpg|link=Red Brick Steeple]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Rural Barn]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:ruralbarn00a.jpg|link=Rural Barn]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18 x 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Rural Cottage]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:ruralcottage00a.jpg|link=Rural Cottage]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Rural Courtyard Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:ruralcourtyardshoppe00a.jpg|link=Rural Courtyard Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 17 x 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Rural Fieldstone And Slate]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:ruralfieldstoneandslate00a.jpg|link=Rural Fieldstone And Slate]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Rural Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:ruralshoppe00a.jpg|link=Rural Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 11&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Rural Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:ruralvilla00a.jpg|link=Rural Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone And Shingle Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstoneandshinglesquarehouse00a.jpg|link=Sandstone And Shingle Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone Chateau]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstonechateau00a.jpg|link=Sandstone Chateau]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,450,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 19 x 17&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.25&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone Citadel]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstonecitadel00a.jpg|link=Sandstone Citadel]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2,050,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 16&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstonecompound00a.jpg|link=Sandstone Compound]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13,950,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 38&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31 x 32&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.25&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone Fort]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstonefort00a.jpg|link=Sandstone Fort]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone Patio]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstonepatio00a.jpg|link=Sandstone Patio]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone Redoubt]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstoneredoubt00a.jpg|link=Sandstone Redoubt]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Sandstone Stained Glass Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:sandstonestainedglassvilla00a.jpg|link=Sandstone Stained Glass Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Shingled Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:shingledhouseboat00a.jpg|link=Shingled Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9,000,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 23 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Shingled Two Story Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:shingledtwostoryhouseboat00a.jpg|link=Shingled Two Story Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11,000,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 23 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Andarian Blockhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallandarianblockhouse00a.jpg|link=Small Andarian Blockhouse]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Andarian Stone House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallandarianstonehouse00a.jpg|link=Small Andarian Stone House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Andarian Stone House East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallandarianstonehouseeast00a.jpg|link=Small Andarian Stone House East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Brick And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallbrickandplaster00a.jpg|link=Small Brick And Plaster]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Brick House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallbrickhouse00a.jpg|link=Small Brick House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Field Stone House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallfieldstonehouse00a.jpg|link=Small Field Stone House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Frontier Cabin]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallfrontiercabin00a.jpg|link=Small Frontier Cabin]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Lightstone House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smalllightstonehouse00a.jpg|link=Small Lightstone House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Log House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallloghouse00a.jpg|link=Small Log House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Marble Workshop]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallmarbleworkshop00a.jpg|link=Small Marble Workshop]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.75&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Red Brick House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallredbrickhouse00a.jpg|link=Small Red Brick House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Shingled House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallshingledhouse00a.jpg|link=Small Shingled House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Stone And Plaster House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallstoneandplasterhouse00a.jpg|link=Small Stone And Plaster House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Stone Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallstonetower00a.jpg|link=Small Stone Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Stone Workshop]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallstoneworkshop00a.jpg|link=Small Stone Workshop]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 75,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Thatched House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallthatchedhouse00a.jpg|link=Small Thatched House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Wood And Plaster House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallwoodandplasterhouse00a.jpg|link=Small Wood And Plaster House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Wooden House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallwoodenhouse00a.jpg|link=Small Wooden House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 50,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Wooden Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallwoodenhouseboat00a.jpg|link=Small Wooden Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,000,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Small Wooden Houseboat East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:smallwoodenhouseboateast00a.jpg|link=Small Wooden Houseboat East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,000,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Spired Slate And Plaster Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:spiredslateandplastertwostoryhouse00a.jpg|link=Spired Slate And Plaster Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 11 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Square Stone Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:squarestonekeep00a.jpg|link=Square Stone Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,650,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Stone And Plaster Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:stoneandplastertwostoryhouse00a.jpg|link=Stone And Plaster Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Stone And Slate Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:stoneandslatesquarehouse00a.jpg|link=Stone And Slate Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Stone Barracks]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:stonebarracks00a.jpg|link=Stone Barracks]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,450,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Stone Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:stonekeep00a.jpg|link=Stone Keep]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5,750,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 24&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 24 x 24&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Stone Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:stoneshoppe00a.jpg|link=Stone Shoppe]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 350,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 6&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Stone Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:stonesquarehouse00a.jpg|link=Stone Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 3&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:tower00a.jpg|link=Tower]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 24 x 26&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Tower East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:towereast00a.jpg|link=Tower East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 31&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 24 x 26&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Two Story Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:twostoryvilla00a.jpg|link=Two Story Villa]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 650,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12 x 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.25&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Windmill House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:windmillhouse00a1.jpg|link=Windmill House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Wood And Plaster Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:woodandplastertwostoryhouse00a.jpg|link=Wood And Plaster Two Story House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1,250,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 12&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 15 x 15&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Wooden Eyelid Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:woodeneyelidsquarehouse00a.jpg|link=Wooden Eyelid Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Wooden Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:woodenhouseboat00a.jpg|link=Wooden Houseboat]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5,000,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 18 x 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Wooden Houseboat East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:woodenhouseboateast00a.jpg|link=Wooden Houseboat East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 5,000,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 18&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Wooden Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:woodensquarehouse00a.jpg|link=Wooden Square House]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 150,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 4&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 9 x 9&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 2&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Wooden Two Story Houseboat East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:woodentwostoryhouseboateast00a.jpg|link=Wooden Two Story Houseboat East]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10,000,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 10 x 22&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1.5&lt;br /&gt;
|-&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[Woodsman&#039;s Lodge]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | [[File:woodsmanslodge00a.jpg|link=Woodsman&#039;s Lodge]]&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 550,000&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 8&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 13 x 14&lt;br /&gt;
| style=&amp;quot;text-align: center;&amp;quot; | 1&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
	<entry>
		<id>http://wiki.uooutlands.com/index.php?title=Commands&amp;diff=2476</id>
		<title>Commands</title>
		<link rel="alternate" type="text/html" href="http://wiki.uooutlands.com/index.php?title=Commands&amp;diff=2476"/>
		<updated>2019-06-05T10:36:14Z</updated>

		<summary type="html">&lt;p&gt;Skrypt: Added alias/alternate commands. Added new commands . Removed [Stun (does not seem to work)&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;[[File:wiki-commands01.gif|right|link=]]&lt;br /&gt;
&amp;lt;div style=&amp;quot;float: right;&amp;quot;&amp;gt;__TOC__&amp;lt;/div&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==Menus==&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | COMMAND&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | INFO&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Help&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Outlands Help page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Website&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Launches the Outlands Website&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Wiki&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Launches the Outlands Wiki&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Forums&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Forum&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Launches the Outlands Forums&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Discord&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Launches the Outlands Discord Channel&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[HelpRequest&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Request&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Help Request page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Achievements&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Achievement&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Achievements page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Societies&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Society&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Societies page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[AspectMastery&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Aspects&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Aspect&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Aspect Mastery page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[SkillMastery&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Skill Mastery page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Customizations&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Customization&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Customizations page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Titles&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Title&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Titles page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Factions&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Faction&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Faction Struggle page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Criminality&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ConsiderSins&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Criminality page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Hunger&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Food&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Satisfaction&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Hunger and Food Satisfaction page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[PlayerStats&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Player Stats page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[DamageTracker&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Damage&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Activates the Damage Tracker tool&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Atlas&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Grants the player an Atlas (double-click to use)&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ServerRankings&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ServerRank&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Server Rankings page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Commands&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Command&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the Commands page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Donate&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Launches the Outlands Donation page&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Guild&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Launches the Guild page&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Mechanics==&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | COMMAND&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | INFO&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[AutoUseSpellScrolls&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Toggles whether to automatically use any spell scrolls found in backpack when casting a spell&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[AutoStealth&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Toggles whether the player will automatically activate Stealth when attempting to move while hidden&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[UnequipOnCast&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Toggles whether the player will automatically unequip items when casting or actively Meditating. If the player has sufficient Parrying and Magery to cast with shields, it will not unequip them&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Pouch&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will search for a random trapped pouch in the player&#039;s backpack and trigger it&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Disarm&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will toggle whether the player attempts to make Disarm attacks&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[DisarmUntoggleMode&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will change handling on when Disarm is automatically untoggled&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Hamstring&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will toggle whether the player will attempt to make Hamstring attacks&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[HamstringUntoggleMode&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will change handling on when Hamstring is automatically untoggled&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[SpellFizzle&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will change whether to display spell fizzle sounds and animations&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Echo&#039;&#039;&#039;&amp;lt;/span&amp;gt; or &amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Echoes&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will open the Echoes menu&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[BossResults&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will open the Boss Results menu&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[MasteryChain&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will double-click your current Mastery Chain&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Text Displays==&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | COMMAND&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | INFO&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowMeleeDamage&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays melee and ranged damage inflicted by the player as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowSpellDamage&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays spell damage inflicted by the player as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowPoisonDamage&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays poison damage inflicted by the player as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowSpecialDamage&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays special damage inflicted by the player as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowProvocationDamage&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays damage values inflicted by the player&#039;s barded targets as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowFollowerDamage&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays damage values inflicted by the player&#039;s controlled followers as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowDamageTaken&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays damage taken by the player as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowFollowerDamageTaken&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays damage taken by the player&#039;s controlled followers as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowHealing&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displaying healing amounts given by or received by the player as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowTamedExperience&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays experience earned by the player&#039;s tamed creatures as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowAspectExperience&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays Aspect experience earned by the player as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowStealthSteps&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays the number of stealth steps the player has remaining as text in game&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowBardingDurations&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays barding effect durations for creatures&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowFactionStruggleAnnouncements&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays whether system messages will notify player of Faction Struggles occurring&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowFactionFlashpointAnnouncements&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays whether system messages will notify player of Faction Flashpoints occurring&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShowShrineCorruptionAnnouncements&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Displays whether system messages will notify player of Shring Corruptions occurring&lt;br /&gt;
|}&lt;br /&gt;
&lt;br /&gt;
==Ships==&lt;br /&gt;
{|&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;width: 300px; text-align: left;&amp;quot; | COMMAND&lt;br /&gt;
! scope=&amp;quot;col&amp;quot; style=&amp;quot;text-align: left;&amp;quot; | INFO&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Stop&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Stops all ship movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Forward&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous forward ship movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ForwardLeft&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous forward left ship movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ForwardRight&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous forward right ship movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Left&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous left strafing movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Right&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous right strafing movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Backward&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous backward movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[BackwardLeft&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous backward left movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Backward&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Begins continuous backward movement&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[TurnLeft&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Turns the ship left 90 degrees&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[TurnRight&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Turns the ship right 90 degrees&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ForwardOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship forward one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ForwardLeftOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship forward left one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ForwardRightOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship forward right one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[LeftOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship left one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[RightOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship right one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[BackwardOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship backward one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[BackwardLeftOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship backward left one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[BackwardRightOne&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Moves the ship backward right one space&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShipMenu&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the ship menu for the ship you are currently boarded&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ShipHotbars&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the ship hotbars for the ship you are currently boarded&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Embark&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Embark onto the nearest friendly ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Disembark&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Disembark from your current ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[EmbarkFollowers&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Embarks all of your nearby followers onto the nearest friendly ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[DisembarkFollowers&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Disembarks your followers from your current ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[TargetingMode&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the ship targeting mode menu for your current ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Reload&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Reloads the cannons on your current ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Dock&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Prompts the player to dock the ship at a location or dockmaster&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ThrowSelfOverboard&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Will immediately kill yourself and reappear as a ghost in the last town you visited by moongate&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ClearTheDeck&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Removes all moveable items on the ship deck and places them in the ship trash barrel&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[ManageCrew&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Readies the crew or sends them below deck&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[BoardingParty&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the ship boarding party window or recalls any current active boarding parties&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[Repair&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Opens the ship repair window&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[AddFriend&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Allows the player to add friends to the ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[AddCoOwner&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Allows the player to add co-owners to the ship&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[FireCannons&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Fires the ship&#039;s cannons at directed target&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[LesserAbility&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Activates the ability installed in the ship&#039;s first lesser ability slot&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[SecondLesserAbility&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Activates the ability installed in the ship&#039;s second lesser ability slot&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[RegularAbility&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Activates the ability installed in the ship&#039;s first regular ability slot&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[SecondRegularAbility&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Activates the ability installed in the ship&#039;s second regular ability slot&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[GreaterAbility&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Activates the ability installed in the ship&#039;s first greater ability slot&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[SecondGreaterAbility&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Activates the ability installed in the ship&#039;s second greater ability slot&lt;br /&gt;
|-&lt;br /&gt;
|&amp;lt;span style=&amp;quot;color:#E7BD62&amp;quot;&amp;gt;&#039;&#039;&#039;[AutoJoinBoardingParties&#039;&#039;&#039;&amp;lt;/span&amp;gt; || Toggles whether you will automatically join any friendly boarding parties launched from your ship&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>Skrypt</name></author>
	</entry>
</feed>