nexusforever/Source/NexusForever.Shared/GameTable/Model/Creature2DisplayInfoEntry.cs
2018-10-09 12:03:35 +13:00

84 lines
2.9 KiB
C#

namespace NexusForever.Shared.GameTable.Model
{
public class Creature2DisplayInfoEntry
{
public uint Id;
public uint StatusFlags;
public string AssetPath;
public string AssetTexture00;
public string AssetTexture01;
public string AssetTexture02;
public string AssetTexture03;
public string AssetTexture04;
public string AssetTexture05;
public uint ModelTextureId00;
public uint ModelTextureId01;
public uint ModelTextureId02;
public uint ModelTextureId03;
public uint ModelTextureId04;
public uint ModelTextureId05;
public string ColorShiftTexturePath;
public uint ColorShiftTextureIdMask;
public uint MaterialDataIdSkinColor0;
public uint MaterialDataIdSkinColor1;
public uint MaterialDataIdWeaponColor0;
public uint MaterialDataIdWeaponColor1;
public uint MaterialDataIdArmorColor0;
public uint MaterialDataIdArmorColor1;
public uint MaterialDataIdDefault0;
public uint MaterialDataIdDefault1;
public uint CreatureMaterialEnum;
public float Scale;
public float HitRadius;
public float WalkLand;
public float WalkAir;
public float WalkWater;
public float WalkHover;
public float RunLand;
public float RunAir;
public float RunWater;
public float RunHover;
public uint ItemVisualTypeIdFeet;
public float SwimWaterDepth;
public uint RaceId;
public uint Sex;
public uint ItemDisplayId00;
public uint ItemDisplayId01;
public uint ItemDisplayId02;
public uint ItemDisplayId03;
public uint ItemDisplayId04;
public uint ItemDisplayId05;
public uint ItemDisplayId06;
public uint ItemDisplayId07;
public uint ItemDisplayId08;
public uint ItemDisplayId09;
public uint ItemDisplayId10;
public uint ItemDisplayId11;
public uint ItemDisplayId12;
public uint ItemDisplayId13;
public uint ItemDisplayId14;
public uint ItemDisplayId15;
public uint ItemDisplayId16;
public uint ItemDisplayId17;
public uint ItemDisplayId18;
public uint ItemDisplayId19;
public uint ModelMeshId00;
public uint ModelMeshId01;
public uint ModelMeshId02;
public uint ModelMeshId03;
public uint ModelMeshId04;
public uint ModelMeshId05;
public uint ModelMeshId06;
public uint ModelMeshId07;
public uint ModelMeshId08;
public uint ModelMeshId09;
public uint ModelMeshId10;
public uint ModelMeshId11;
public uint ModelMeshId12;
public uint ModelMeshId13;
public uint ModelMeshId14;
public uint ModelMeshId15;
public float GroundOffsetHover;
public float GroundOffsetFly;
}
}