zxl
/
CTT
forked from Cal/CTT
1
0
Fork 0
CTT/Tools/ExcelTool/CS/RoleGrowth.cs

85 lines
3.0 KiB
C#

using ET;
using MongoDB.Bson.Serialization.Attributes;
namespace Cal.DataTable
{
[Config]
public partial class RoleGrowthCategory : ACategory<RoleGrowth>
{
public static RoleGrowthCategory Instance;
public RoleGrowthCategory()
{
Instance = this;
}
}
public partial class RoleGrowth:IConfig
{
public partial class Exp
{
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Exp_BaseNumber;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Exp_Power;
}
[BsonId]
public long Id { get; set; }
public Exp[] ExpArr;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Hp1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Hp2;
public int Hp3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Vig1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Vig2;
public int Vig3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Str1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Str2;
public int Str3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Quk1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Quk2;
public int Quk3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Spi1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Spi2;
public int Spi3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Wim1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Wim2;
public int Wim3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Dvo1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float Dvo2;
public int Dvo3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float PhyAtk1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float PhyAtk2;
public int PhyAtk3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float SpiAtk1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float SpiAtk2;
public int SpiAtk3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float PhyDef1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float PhyDef2;
public int PhyDef3;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float SpiDef1;
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
public float SpiDef2;
public int SpiDef3;
}
}