#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 cleric class
/// </summary>
public class ClericClass : Class
{
#region [rgn] Constructors (1)
/// <summary>
/// Initializes a new instance of the <see cref="ClericClass"/> class.
/// </summary>
public ClericClass()
: base("Cleric", 75)
{
Description = "Holy warriors of healing.";
}
#endregion [rgn]
}
}