2021-04-24 17:39:11 +08:00
|
|
|
using ET;
|
|
|
|
using MongoDB.Bson.Serialization.Attributes;
|
|
|
|
|
|
|
|
namespace Cal.DataTable
|
|
|
|
{
|
|
|
|
[Config]
|
|
|
|
public partial class CopyConfigCategory : ACategory<CopyConfig>
|
|
|
|
{
|
|
|
|
public static CopyConfigCategory Instance;
|
|
|
|
public CopyConfigCategory()
|
|
|
|
{
|
|
|
|
Instance = this;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public partial class CopyConfig:IConfig
|
|
|
|
{
|
|
|
|
[BsonId]
|
|
|
|
public long Id { get; set; }
|
|
|
|
public string Name;
|
|
|
|
public string Desc;
|
2021-05-01 11:27:41 +08:00
|
|
|
public int BattleType;
|
|
|
|
public string VictoryCopyReword;
|
|
|
|
public string DefeatCopyReword;
|
2021-04-24 17:39:11 +08:00
|
|
|
public int NeedEnergy;
|
|
|
|
public int NeedBossEnergy;
|
|
|
|
public bool IsPVP;
|
|
|
|
public bool CanTeam;
|
|
|
|
public int MinTeamMember;
|
|
|
|
public string BattleSceneName;
|
2021-05-01 11:27:41 +08:00
|
|
|
public bool IsFobbidenPotion;
|
2021-04-24 17:39:11 +08:00
|
|
|
}
|
|
|
|
}
|