36 lines
870 B
C#
36 lines
870 B
C#
using ET;
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
namespace Cal.DataTable
|
|
{
|
|
[Config]
|
|
public partial class CopyRewordConfigCategory : ACategory<CopyRewordConfig>
|
|
{
|
|
public static CopyRewordConfigCategory Instance;
|
|
public CopyRewordConfigCategory()
|
|
{
|
|
Instance = this;
|
|
}
|
|
}
|
|
|
|
public partial class CopyRewordConfig:IConfig
|
|
{
|
|
[BsonId]
|
|
public long Id { get; set; }
|
|
public string Desc;
|
|
public string RewordType;
|
|
public bool IsAutoRecover;
|
|
public bool IsForceNextLayer;
|
|
public bool IsForceCity;
|
|
public bool IsForceTran;
|
|
public int ForceTransMapId;
|
|
public bool IsOpenTranPoint;
|
|
[BsonRepresentation(MongoDB.Bson.BsonType.Double, AllowTruncation = true)]
|
|
public float[] TransPos;
|
|
public bool IsAddMainStoryRecord;
|
|
public bool IsKillMonsterGiveItem;
|
|
public bool IsUpdateTrialCopyRecord;
|
|
public bool IsUpdateManulEquipRecord;
|
|
}
|
|
}
|