61 lines
No EOL
692 B
C#
61 lines
No EOL
692 B
C#
using System;
|
|
|
|
namespace Server.Items
|
|
{
|
|
public enum ArmorQuality
|
|
{
|
|
Low,
|
|
Regular,
|
|
Exceptional
|
|
}
|
|
|
|
public enum ArmorDurabilityLevel
|
|
{
|
|
Regular,
|
|
Durable,
|
|
Substantial,
|
|
Massive,
|
|
Fortified,
|
|
Indestructible
|
|
}
|
|
|
|
public enum ArmorProtectionLevel
|
|
{
|
|
Regular,
|
|
Defense,
|
|
Guarding,
|
|
Hardening,
|
|
Fortification,
|
|
Invulnerability,
|
|
}
|
|
|
|
public enum ArmorBodyType
|
|
{
|
|
Gorget,
|
|
Gloves,
|
|
Helmet,
|
|
Arms,
|
|
Legs,
|
|
Chest,
|
|
Shield
|
|
}
|
|
|
|
public enum ArmorMaterialType
|
|
{
|
|
Cloth,
|
|
Leather,
|
|
Studded,
|
|
Bone,
|
|
Wood,
|
|
Ringmail,
|
|
Chainmail,
|
|
Plate
|
|
}
|
|
|
|
public enum ArmorMeditationAllowance
|
|
{
|
|
All,
|
|
Half,
|
|
None
|
|
}
|
|
} |