#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.Continents.Areas.Items.Enums
{
/// <summary>
/// Implements a type of weapon
/// </summary>
public enum WeaponClass
{
/// <summary>
/// Unknown weapon type
/// </summary>
Exotic,
/// <summary>
/// A sword
/// </summary>
Sword,
/// <summary>
/// A dagger
/// </summary>
Dagger,
/// <summary>
/// A spear
/// </summary>
Spear,
/// <summary>
/// A mace
/// </summary>
Mace,
/// <summary>
/// An axe
/// </summary>
Axe,
/// <summary>
/// A flail
/// </summary>
Flail,
/// <summary>
/// A whip
/// </summary>
Whip,
/// <summary>
/// A polearm
/// </summary>
Polearm
}
}