#region Arthea License
/***********************************************************************
* Arthea MUD by R. Jennings (2007) http://arthea.googlecode.com/ *
* By using this code you comply with the Artistic and GPLv2 Licenses. *
***********************************************************************/
#endregion
namespace Arthea.Classes
{
/// <summary>
/// Implements a thief class
/// </summary>
public class ThiefClass : Class
{
#region [rgn] Constructors (1)
/// <summary>
/// Initializes a new instance of the <see cref="ThiefClass"/> class.
/// </summary>
public ThiefClass()
: base("Thief", 90)
{
Description = "Skilled at treachery and deception.";
}
#endregion [rgn]
}
}