31 lines
No EOL
1,002 B
C#
31 lines
No EOL
1,002 B
C#
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;
|
|
}
|
|
} |