Engine:
- Added Character class PlayerBasic for the lowest authorized level - Added Character class PlayerAdmin that will provide some additional higher level authorized commands - Added Character class PlayerGM that will provide high level authorized commands - Added Factions class for future use of factions - Added Class class for future use of classes - Added Race class for future use of Races - Added NPCFriendly class for future use of Friendly NPCs - Added NPCHostile class for future use of Monster NPCs - Added CommandWalk class for future walk command - Added CommandGMTeleport class for future GM teleporting support. - Added Description property to the Door class.
This commit is contained in:
parent
85aae88e34
commit
5f9a707b4c
14 changed files with 180 additions and 4 deletions
|
@ -43,6 +43,10 @@ namespace MudDesigner.MudEngine.GameObjects.Environment
|
|||
|
||||
public string ConnectedRoom { get; set; }
|
||||
|
||||
[Category("Environment Information")]
|
||||
[Description("The description displayed to the user when a 'Look' command is used.")]
|
||||
public string Description { get; set; }
|
||||
|
||||
public Door()
|
||||
{
|
||||
LevelRequirement = 0;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue