Reorganizes Project (#41)

This commit is contained in:
Kamron Batman 2019-08-02 18:13:40 -07:00 committed by GitHub
parent 08bf44af9a
commit 3614a66aee
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3499 changed files with 79 additions and 55 deletions

View file

@ -0,0 +1,14 @@
namespace Server.Items
{
public static class Beard
{
public static int LongBeard = 0x203E;
public static int ShortBeard = 0x203f;
public static int Goatee = 0x2040;
public static int Mustache = 0x2041;
public static int MediumShortBeard = 0x204B;
public static int MediumLongBeard = 0x204C;
public static int Vandyke = 0x204D;
}
}

View file

@ -0,0 +1,31 @@
namespace Server.Items
{
public static class Hair
{
// Human
public static int Long = 0x203C;
public static int Shor = 0x203B;
public static int PonyTail = 0x203D;
public static int Mohawk = 0x2044;
public static int Pageboy = 0x2045;
public static int Bun = 0x2046; // Female Only
public static int Afro = 0x2047;
public static int Receding = 0x2048; // Male Only
public static int TwoPigTails = 0x2049;
public static int Krisna = 0x204A;
// Elf
public static int MidLongElf = 0x2FBF; // Male Only
public static int LongFeather = 0x2FC0;
public static int ShortElf = 0x2FC1;
public static int Mullet = 0x2FC2;
public static int Flower = 0x2FCC; // Female only
public static int LongElf = 0x2FCD; // Male Only
public static int Knob = 0x2FCE;
public static int Braided = 0x2FCF;
public static int BunElf = 0x2FD0; // Female Only
public static int Spiked = 0x2FD1;
}
}