Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches
PlayerVariantID.cs
Go to the documentation of this file.
1namespace Terraria.ID;
2
3public static class PlayerVariantID
4{
5 public class Sets
6 {
7 public static SetFactory Factory = new SetFactory(Count);
8
9 public static bool[] Male = Factory.CreateBoolSet(0, 1, 2, 3, 8, 10);
10
11 public static int[] AltGenderReference = Factory.CreateIntSet(0, 0, 4, 4, 0, 1, 5, 5, 1, 2, 6, 6, 2, 3, 7, 7, 3, 8, 9, 9, 8, 10, 11, 11, 10);
12
13 public static int[] VariantOrderMale = new int[6] { 0, 1, 2, 3, 8, 10 };
14
15 public static int[] VariantOrderFemale = new int[6] { 4, 5, 6, 7, 9, 11 };
16 }
17
18 public const int MaleStarter = 0;
19
20 public const int MaleSticker = 1;
21
22 public const int MaleGangster = 2;
23
24 public const int MaleCoat = 3;
25
26 public const int FemaleStarter = 4;
27
28 public const int FemaleSticker = 5;
29
30 public const int FemaleGangster = 6;
31
32 public const int FemaleCoat = 7;
33
34 public const int MaleDress = 8;
35
36 public const int FemaleDress = 9;
37
38 public const int MaleDisplayDoll = 10;
39
40 public const int FemaleDisplayDoll = 11;
41
42 public static readonly int Count = 12;
43}
static readonly int Count