Reorganizes Project (#41)
This commit is contained in:
parent
08bf44af9a
commit
3614a66aee
3499 changed files with 79 additions and 55 deletions
62
Projects/Scripts/Items/Armor/ArmorEnums.cs
Normal file
62
Projects/Scripts/Items/Armor/ArmorEnums.cs
Normal file
|
|
@ -0,0 +1,62 @@
|
|||
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,
|
||||
Spined,
|
||||
Horned,
|
||||
Barbed,
|
||||
Ringmail,
|
||||
Chainmail,
|
||||
Plate,
|
||||
Dragon // On OSI, Dragon is seen and considered its own type.
|
||||
}
|
||||
|
||||
public enum ArmorMeditationAllowance
|
||||
{
|
||||
All,
|
||||
Half,
|
||||
None
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue