#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.Scripts.Enums
{
/// <summary>
/// Implementation of a condition keyword
/// </summary>
public enum ConditionKeyword
{
/// <summary>
/// Is a number greater than a random number between 1 and 100
/// </summary>
Random
}
}