terraria-source-code/ID/PlayerVariantID.cs
2021-10-27 18:03:19 -04:00

46 lines
1.4 KiB
C#

// Decompiled with JetBrains decompiler
// Type: Terraria.ID.PlayerVariantID
// Assembly: Terraria, Version=1.3.5.3, Culture=neutral, PublicKeyToken=null
// MVID: 68659D26-2BE6-448F-8663-74FA559E6F08
// Assembly location: C:\Users\mikeyisbaeyt\Downloads\depotdownloader-2.4.5\depots\105601\6707058\Terraria.exe
namespace Terraria.ID
{
public static class PlayerVariantID
{
public static SetFactory Factory = new SetFactory(10);
public const int MaleStarter = 0;
public const int MaleSticker = 1;
public const int MaleGangster = 2;
public const int MaleCoat = 3;
public const int FemaleStarter = 4;
public const int FemaleSticker = 5;
public const int FemaleGangster = 6;
public const int FemaleCoat = 7;
public const int MaleDress = 8;
public const int FemaleDress = 9;
public const int Count = 10;
public class Sets
{
public static bool[] Male = PlayerVariantID.Factory.CreateBoolSet(0, 1, 2, 3, 8);
public static int[] AltGenderReference = PlayerVariantID.Factory.CreateIntSet(0, 0, 4, 4, 0, 1, 5, 5, 1, 2, 6, 6, 2, 3, 7, 7, 3, 8, 9, 9, 8);
public static int[] VariantOrderMale = new int[5]
{
0,
1,
2,
3,
8
};
public static int[] VariantOrderFemale = new int[5]
{
4,
5,
6,
7,
9
};
}
}
}