#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
using Arthea.Classes;
using Arthea.Connections.Players.Enums;
using Arthea.Continents.Areas.Characters.Enums;
namespace Arthea.Races
{
/// <summary>
/// Implementation of a dwarf race.
/// </summary>
public class DwarfRace : PlayerRace
{
#region [rgn] Constructors (1)
/// <summary>
/// Initializes a new instance of the <see cref="DwarfRace"/> class.
/// </summary>
public DwarfRace() : base("dwarf")
{
Description = "Smaller sturdy folk.";
StatBonus[Stat.Constitution] = 2;
StatBonus[Stat.Charisma] = -2;
Size = Size.Medium;
FavouredClass = typeof (WarriorClass);
}
#endregion [rgn]
}
}